Skip to content
VS Code

cobroya for VS Code

io.github.dan1d/cobroya

Mercado Pago payments for AI agents: payment links, search, refunds, merchant info.

client:VS Code transport:stdio runtime:npm

Install cobroya in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mercado-pago-access-token",
      "description": "MERCADO_PAGO_ACCESS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "cobroya": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "cobroya"
      ],
      "env": {
        "MERCADO_PAGO_ACCESS_TOKEN": "${input:mercado-pago-access-token}"
      }
    }
  }
}

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

cobroya in other clients