Catalog
Gotify MCP
Officialby kcofoni
MCP server for Gotify push notifications - send messages and manage apps/clients.
Sends and manages push notifications via Gotify service.
README not available yet.
Install
Configuration
Environment variables
GOTIFY_URLrequiredThe full base URL of your Gotify server (e.g., http://localhost:80 or https://gotify.example.com)
GOTIFY_CLIENT_TOKENsecretA client token from your Gotify server with permissions to manage applications, clients, and messages
GOTIFY_APP_TOKENsecretAn application token for sending messages via create_message tool
GOTIFY_MCP_PORTPort for the MCP SSE server (default: 3020)
GOTIFY_MCP_TRANSPORTTransport type: 'sse' or 'stdio' (default: sse)
claude_desktop_config.json
{
"mcpServers": {
"gotify-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kcofoni/gotify-mcp:v1.0.1"
],
"env": {
"GOTIFY_URL": "<YOUR_GOTIFY_URL>",
"GOTIFY_CLIENT_TOKEN": "<YOUR_GOTIFY_CLIENT_TOKEN>",
"GOTIFY_APP_TOKEN": "<YOUR_GOTIFY_APP_TOKEN>",
"GOTIFY_MCP_PORT": "<YOUR_GOTIFY_MCP_PORT>",
"GOTIFY_MCP_TRANSPORT": "<YOUR_GOTIFY_MCP_TRANSPORT>"
}
}
}
}