Skip to content
VS Code

mcp transbank for VS Code

io.github.codespar/mcp-transbank

MCP server for Transbank — Chile dominant card acquirer (Webpay Plus / Mall / OneClick)

client:VS Code transport:stdio runtime:npm

Install mcp transbank in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "transbank-commerce-code",
      "description": "TRANSBANK_COMMERCE_CODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "transbank-api-key-secret",
      "description": "TRANSBANK_API_KEY_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "transbank-env",
      "description": "TRANSBANK_ENV",
      "password": true
    }
  ],
  "servers": {
    "mcp-transbank": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-transbank"
      ],
      "env": {
        "TRANSBANK_COMMERCE_CODE": "${input:transbank-commerce-code}",
        "TRANSBANK_API_KEY_SECRET": "${input:transbank-api-key-secret}",
        "TRANSBANK_ENV": "${input:transbank-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 transbank in other clients