Skip to content
VS Code

cbr mcp for VS Code

io.github.theyahia/cbr-mcp

MCP server for Central Bank of Russia API — currency rates, key rate, precious metals, conversion.

client:VS Code transport:stdio runtime:npm

Install cbr mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "api-key",
      "description": "API_KEY",
      "password": true
    }
  ],
  "servers": {
    "cbr-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@theyahia/cbr-mcp"
      ],
      "env": {
        "API_KEY": "${input:api-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

cbr mcp in other clients