Apprise RMCP for VS Code
ai.dinglebear/rapprise
Apprise notifications over MCP and CLI with authenticated stdio and HTTP transports.
client:VS Code
transport:stdio
runtime:npm
Install Apprise RMCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "apprise-url",
"description": "APPRISE_URL",
"password": true
},
{
"type": "promptString",
"id": "apprise-token",
"description": "APPRISE_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "apprise-rmcp-version",
"description": "APPRISE_RMCP_VERSION",
"password": true
},
{
"type": "promptString",
"id": "apprise-rmcp-repo",
"description": "APPRISE_RMCP_REPO",
"password": true
},
{
"type": "promptString",
"id": "apprise-rmcp-release-base-url",
"description": "APPRISE_RMCP_RELEASE_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "rust-log",
"description": "RUST_LOG",
"password": true
}
],
"servers": {
"rapprise": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@dinglebear/rapprise"
],
"env": {
"APPRISE_URL": "${input:apprise-url}",
"APPRISE_TOKEN": "${input:apprise-token}",
"APPRISE_RMCP_VERSION": "${input:apprise-rmcp-version}",
"APPRISE_RMCP_REPO": "${input:apprise-rmcp-repo}",
"APPRISE_RMCP_RELEASE_BASE_URL": "${input:apprise-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