gotify mcp for VS Code
io.github.kcofoni/gotify-mcp
MCP server for Gotify push notifications - send messages and manage apps/clients.
client:VS Code
transport:stdio
runtime:oci
Install gotify mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gotify-url",
"description": "GOTIFY_URL",
"password": true
},
{
"type": "promptString",
"id": "gotify-client-token",
"description": "GOTIFY_CLIENT_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "gotify-app-token",
"description": "GOTIFY_APP_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "gotify-mcp-port",
"description": "GOTIFY_MCP_PORT",
"password": true
},
{
"type": "promptString",
"id": "gotify-mcp-transport",
"description": "GOTIFY_MCP_TRANSPORT",
"password": true
}
],
"servers": {
"gotify-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kcofoni/gotify-mcp:v1.0.1"
],
"env": {
"GOTIFY_URL": "${input:gotify-url}",
"GOTIFY_CLIENT_TOKEN": "${input:gotify-client-token}",
"GOTIFY_APP_TOKEN": "${input:gotify-app-token}",
"GOTIFY_MCP_PORT": "${input:gotify-mcp-port}",
"GOTIFY_MCP_TRANSPORT": "${input:gotify-mcp-transport}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs