Skip to content
VS Code

mcp cobre for VS Code

io.github.codespar/mcp-cobre

MCP server for Cobre — CO/MX B2B treasury: balances, counterparties, money movements

client:VS Code transport:stdio runtime:npm

Install mcp cobre in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cobre-user-id",
      "description": "COBRE_USER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cobre-secret",
      "description": "COBRE_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cobre-base-url",
      "description": "COBRE_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-cobre": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-cobre"
      ],
      "env": {
        "COBRE_USER_ID": "${input:cobre-user-id}",
        "COBRE_SECRET": "${input:cobre-secret}",
        "COBRE_BASE_URL": "${input:cobre-base-url}"
      }
    }
  }
}

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

mcp cobre in other clients