Skip to content
VS Code

qontoctl for VS Code

io.github.alexey-pelykh/qontoctl

CLI and MCP server for the Qonto banking API

client:VS Code transport:stdio runtime:npm

Install qontoctl in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "qontoctl-organization-slug",
      "description": "QONTOCTL_ORGANIZATION_SLUG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "qontoctl-secret-key",
      "description": "QONTOCTL_SECRET_KEY",
      "password": true
    }
  ],
  "servers": {
    "qontoctl": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "qontoctl"
      ],
      "env": {
        "QONTOCTL_ORGANIZATION_SLUG": "${input:qontoctl-organization-slug}",
        "QONTOCTL_SECRET_KEY": "${input:qontoctl-secret-key}"
      }
    }
  }
}

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

qontoctl in other clients