Skip to main content
NE

Nequi

v0.2.0-alpha.2API Keyalpha

Carteira digital colombiana do Bancolombia: push payments, QR codes e transferências P2P. Seu agente move COP na hora via Nequi.

16 ferramentas3 env vars🇨🇴 Colômbiaalpha — validação pendente

O que seu agente faz

O Nequi dá ao seu agente 16 tools que ele chama direto — escolha as que precisar, no Claude, Cursor ou qualquer cliente MCP.

  • create_push_paymentSend a push payment notification to a Nequi user
  • get_payment_statusCheck the status of a payment
  • create_qr_paymentGenerate a QR code for payment
Exemplo de chamada
// Your agent calls a tool directly — no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("create_push_payment", { /* ... */ });

Instalar

terminal
$ npm install @codespar/mcp-nequi@alpha

Quickstart

Adicione esta entrada ao seu claude_desktop_config.json (ou a config de qualquer cliente compatível com MCP).

claude_desktop_config.json
{
  "mcpServers": {
    "nequi": {
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-nequi@alpha"
      ],
      "env": {
        "NEQUI_API_KEY": "<your_nequi_api_key>",
        "NEQUI_CLIENT_ID": "<your_nequi_client_id>",
        "NEQUI_CLIENT_SECRET": "<your_nequi_client_secret>"
      }
    }
  }
}

Depois de reiniciar, seu agente pode chamar qualquer uma das 16 ferramentas abaixo — teste create_push_payment primeiro.

Variáveis de ambiente · 3

Necessárias pra autenticar o server. Armazenadas criptografadas ao usar a hospedagem gerenciada da CodeSpar.

NEQUI_API_KEY
obrigatóriosecret

API key for Nequi

NEQUI_CLIENT_ID
obrigatório

OAuth2 client ID

NEQUI_CLIENT_SECRET
obrigatóriosecret

OAuth2 client secret

Ferramentas disponíveis · 16

Cada ferramenta é independente — seu agente carrega só o que precisa pra reduzir contexto e tempo de resposta.

WRITEcreate_push_payment
Send a push payment notification to a Nequi user
WRITEget_payment_status
Check the status of a payment
WRITEcreate_qr_payment
Generate a QR code for payment
DELETEreverse_payment
Reverse a completed payment
READget_subscription
Get subscription details for a phone number
DELETEunsubscribe
Cancel a subscription
WRITEcreate_static_qr
Generate a static (reusable) Nequi QR code for a merchant
DELETEreverse_transaction
Reverse any Nequi transaction by transaction ID (refund flow)

Frameworks compatíveis

MCP é um protocolo — qualquer framework que o fale pode montar este server.

Claude Agent SDKAnthropic
OpenAI AgentsOpenAI
Vercel AI SDKVercel
LangChainLangChain
LlamaIndexLlamaIndex
CrewAICrewAI
MastraMastra
Qualquer cliente MCPProtocolo

Perguntas frequentes

Rode `npx -y @codespar/mcp-nequi` e adicione o bloco de config acima ao seu cliente MCP — Claude, Cursor, VS Code ou qualquer cliente compatível com MCP. Sem build, sem SDK. Prefere hospedado? O tier gerenciado da CodeSpar roda pra você, com a auth resolvida.
Nequi — MCP server · 16 tools | CodeSpar