Colombian payment gateway by Bancolombia: cards, PSE bank transfers, and Nequi wallet. Your agent accepts COP with local checkout.
Wompi gives your agent 22 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
create_transaction β Create a payment transactionget_transaction β Get transaction details by IDlist_transactions β List transactions// 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_transaction", { /* ... */ });$ npm install @codespar/mcp-wompiAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"wompi": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-wompi"
],
"env": {
"WOMPI_PUBLIC_KEY": "<your_wompi_public_key>",
"WOMPI_PRIVATE_KEY": "<your_wompi_private_key>"
}
}
}
}After restart, your agent can call any of the 22 tools below β try create_transaction first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
WOMPI_PUBLIC_KEYPublic key for Wompi
WOMPI_PRIVATE_KEYPrivate key for Wompi
WOMPI_EVENTS_SECRETEvents/webhook secret for signature validation
Each tool is independent β your agent loads only what it needs to reduce context and response time.
create_transactionget_transactionlist_transactionssearch_transaction_by_referencevoid_transactioncreate_payment_linkget_payment_linkupdate_payment_linkMCP is a protocol β any framework that speaks it can mount this server.