Skip to content
VS Code

Gotify RMCP for VS Code

ai.dinglebear/rgotify

Gotify notifications and app, client, and message management over MCP and CLI.

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": {
    "rgotify": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@dinglebear/rgotify"
      ],
      "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

Gotify RMCP in other clients