Gotify RMCP for VS Code
ai.dinglebear/gotify-rmcp
Rust MCP server and CLI for Gotify push notifications and message management.
client:VS Code
transport:stdio
runtime:npm
Install Gotify RMCP 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-rmcp-version",
"description": "GOTIFY_RMCP_VERSION",
"password": true
},
{
"type": "promptString",
"id": "gotify-rmcp-repo",
"description": "GOTIFY_RMCP_REPO",
"password": true
},
{
"type": "promptString",
"id": "gotify-rmcp-release-base-url",
"description": "GOTIFY_RMCP_RELEASE_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "rust-log",
"description": "RUST_LOG",
"password": true
}
],
"servers": {
"gotify-rmcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"gotify-rmcp"
],
"env": {
"GOTIFY_URL": "${input:gotify-url}",
"GOTIFY_CLIENT_TOKEN": "${input:gotify-client-token}",
"GOTIFY_APP_TOKEN": "${input:gotify-app-token}",
"GOTIFY_RMCP_VERSION": "${input:gotify-rmcp-version}",
"GOTIFY_RMCP_REPO": "${input:gotify-rmcp-repo}",
"GOTIFY_RMCP_RELEASE_BASE_URL": "${input:gotify-rmcp-release-base-url}",
"RUST_LOG": "${input:rust-log}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs