Skip to content
VS Code

mcp nequi for VS Code

io.github.codespar/mcp-nequi

Nequi — Colombian digital wallet (50M+ users, by Bancolombia)

client:VS Code transport:stdio runtime:npm

Install mcp nequi in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nequi-api-key",
      "description": "NEQUI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nequi-client-id",
      "description": "NEQUI_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nequi-client-secret",
      "description": "NEQUI_CLIENT_SECRET",
      "password": true
    }
  ],
  "servers": {
    "mcp-nequi": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-nequi"
      ],
      "env": {
        "NEQUI_API_KEY": "${input:nequi-api-key}",
        "NEQUI_CLIENT_ID": "${input:nequi-client-id}",
        "NEQUI_CLIENT_SECRET": "${input:nequi-client-secret}"
      }
    }
  }
}

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

mcp nequi in other clients