Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub jmagar/claude-homelab --plugin gotify-mcpCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"gotify-mcp": {
"command": "uv",
"args": [
"run",
"--project",
"${CLAUDE_PLUGIN_ROOT}",
"gotify-mcp-server"
],
"env": {
"ALLOW_YOLO": "false",
"GOTIFY_URL": "${userConfig.gotify_url}",
"GOTIFY_APP_TOKEN": "${userConfig.gotify_app_token}",
"GOTIFY_LOG_LEVEL": "INFO",
"ALLOW_DESTRUCTIVE": "false",
"RUNNING_IN_DOCKER": "false",
"GOTIFY_MCP_NO_AUTH": "true",
"GOTIFY_CLIENT_TOKEN": "${userConfig.gotify_client_token}",
"GOTIFY_MCP_TRANSPORT": "stdio",
"UV_PROJECT_ENVIRONMENT": "${CLAUDE_PLUGIN_DATA}/.venv"
}
}
}
}Replace placeholder values for: GOTIFY_MCP_NO_AUTH, GOTIFY_CLIENT_TOKEN, GOTIFY_APP_TOKEN
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
This server has elevated permissions. Review the source code before enabling.
Server configuration and connection parameters
uvCommand-line arguments passed to the server process
Environment variables set when the server starts
ALLOW_YOLO=falseGOTIFY_URL=${userConfig.gotify_url}GOTIFY_APP_TOKEN=${userConfig.gotify_app_token}GOTIFY_LOG_LEVEL=INFOALLOW_DESTRUCTIVE=falseRUNNING_IN_DOCKER=falseGOTIFY_MCP_NO_AUTH=trueGOTIFY_CLIENT_TOKEN=${userConfig.gotify_client_token}GOTIFY_MCP_TRANSPORT=stdioUV_PROJECT_ENVIRONMENT=${CLAUDE_PLUGIN_DATA}/.venvSensitive values you must provide — never committed to source control
Share bugs, ideas, or general feedback.