Colombian digital wallet by Bancolombia: push payments, QR codes, and P2P transfers. Your agent moves COP instantly via Nequi.
Nequi gives your agent 16 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
create_push_payment β Send a push payment notification to a Nequi userget_payment_status β Check the status of a paymentcreate_qr_payment β Generate a QR code for payment// 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", { /* ... */ });$ npm install @codespar/mcp-nequi@alphaAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"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>"
}
}
}
}After restart, your agent can call any of the 16 tools below β try create_push_payment first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
NEQUI_API_KEYAPI key for Nequi
NEQUI_CLIENT_IDOAuth2 client ID
NEQUI_CLIENT_SECRETOAuth2 client secret
Each tool is independent β your agent loads only what it needs to reduce context and response time.
create_push_paymentget_payment_statuscreate_qr_paymentreverse_paymentget_subscriptionunsubscribecreate_static_qrreverse_transactionMCP is a protocol β any framework that speaks it can mount this server.