Catalog
tv.tootie/gotify-mcp
OfficialGotify MCP
MCP server for self-hosted Gotify push notifications and message management.
Send and manage push notifications via self-hosted Gotify server.
README not available yet.
Install
Configuration
Environment variables
GOTIFY_URLrequiredBase URL of your Gotify server, e.g. https://gotify.example.com. No trailing slash.
GOTIFY_APP_TOKENsecretGotify application token for sending messages (Settings > Apps > Create Application).
GOTIFY_CLIENT_TOKENsecretGotify client token for management operations (Settings > Clients).
GOTIFY_MCP_TRANSPORTSet to 'stdio' when running as a local subprocess. Default is 'http' for container deployments.
claude_desktop_config.json
{
"mcpServers": {
"gotify-mcp": {
"command": "uvx",
"args": [
"gotify-mcp"
],
"env": {
"GOTIFY_URL": "<YOUR_GOTIFY_URL>",
"GOTIFY_APP_TOKEN": "<YOUR_GOTIFY_APP_TOKEN>",
"GOTIFY_CLIENT_TOKEN": "<YOUR_GOTIFY_CLIENT_TOKEN>",
"GOTIFY_MCP_TRANSPORT": "<YOUR_GOTIFY_MCP_TRANSPORT>"
}
}
}
}