gotify mcp for Gemini CLI
io.github.kcofoni/gotify-mcp
MCP server for Gotify push notifications - send messages and manage apps/clients.
client:Gemini CLI
transport:stdio
runtime:oci
Install gotify mcp in Gemini CLI
~/.gemini/settings.json · windows: %USERPROFILE%\.gemini\settings.json
{
"mcpServers": {
"gotify-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kcofoni/gotify-mcp:v1.0.1"
],
"env": {
"GOTIFY_URL": "<GOTIFY_URL>",
"GOTIFY_CLIENT_TOKEN": "<GOTIFY_CLIENT_TOKEN>",
"GOTIFY_APP_TOKEN": "<GOTIFY_APP_TOKEN>",
"GOTIFY_MCP_PORT": "<GOTIFY_MCP_PORT>",
"GOTIFY_MCP_TRANSPORT": "<GOTIFY_MCP_TRANSPORT>"
}
}
}
}
Gemini expands $VAR and ${VAR} inside env values, so a secret can live in your shell rather than this file. Gemini CLI docs