Skip to content
VS Code

Monobank for VS Code

io.github.akutishevsky/monobank-mcp-server

MCP server for Monobank API — currency rates, client info, and account statements

client:VS Code transport:stdio runtime:npm

Install Monobank in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "monobank-api-token",
      "description": "MONOBANK_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "monobank-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "monobank-mcp-server"
      ],
      "env": {
        "MONOBANK_API_TOKEN": "${input:monobank-api-token}"
      }
    }
  }
}

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

Monobank in other clients