Skip to content
VS Code

mcp dock for VS Code

io.github.codespar/mcp-dock

MCP server for Dock — Brazilian Banking-as-a-Service: accounts, Pix, card issuing for fintechs

client:VS Code transport:stdio runtime:npm

Install mcp dock in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dock-client-id",
      "description": "DOCK_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dock-client-secret",
      "description": "DOCK_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dock-env",
      "description": "DOCK_ENV",
      "password": true
    }
  ],
  "servers": {
    "mcp-dock": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-dock"
      ],
      "env": {
        "DOCK_CLIENT_ID": "${input:dock-client-id}",
        "DOCK_CLIENT_SECRET": "${input:dock-client-secret}",
        "DOCK_ENV": "${input:dock-env}"
      }
    }
  }
}

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

mcp dock in other clients