initial Gemini CLI extension
CICD / Explore-Gitea-Actions (push) Successful in 1m1s Details

This commit is contained in:
Isaac Johnson 2025-10-09 10:49:45 -05:00
parent a429c41153
commit 31c0a90e54
1 changed files with 26 additions and 0 deletions

26
gemini-extension.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "vikunja",
"version": "1.0.11",
"mcpServers": {
"nodeServer": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"VIKUNJA_URL",
"-e",
"VIKUNJA_USERNAME",
"-e",
"VIKUNJA_PASSWORD",
"harbor.freshbrewed.science/library/vikunjamcp:0.11"
],
"env": {
"VIKUNJA_URL": "$VIKUNJA_URL",
"VIKUNJA_USERNAME": "$VIKUNJA_USERNAME",
"VIKUNJA_PASSWORD": "$VIKUNJA_PASSWORD"
}
}
}
}