Skip to main content
WO

Wompi

v0.2.1API Key

Colombian payment gateway by Bancolombia: cards, PSE bank transfers, and Nequi wallet. Your agent accepts COP with local checkout.

22 tools3 env varsπŸ‡¨πŸ‡΄ Colombiastable on npm

What your agent can do

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 transaction
  • get_transaction β€” Get transaction details by ID
  • list_transactions β€” List transactions
Example call
// 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", { /* ... */ });

Install

terminal
$ npm install @codespar/mcp-wompi

Quickstart

Add this entry to your claude_desktop_config.json (or any MCP-compatible client config).

claude_desktop_config.json
{
  "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.

Environment variables Β· 3

Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.

WOMPI_PUBLIC_KEY
required

Public key for Wompi

WOMPI_PRIVATE_KEY
requiredsecret

Private key for Wompi

WOMPI_EVENTS_SECRET
optionalsecret

Events/webhook secret for signature validation

Available tools Β· 22

Each tool is independent β€” your agent loads only what it needs to reduce context and response time.

WRITEcreate_transaction
Create a payment transaction
READget_transaction
Get transaction details by ID
READlist_transactions
List transactions
READsearch_transaction_by_reference
Find transaction(s) by merchant reference
DELETEvoid_transaction
Void a transaction
WRITEcreate_payment_link
Create a payment link
WRITEget_payment_link
Get payment link details
WRITEupdate_payment_link
Update a payment link

Compatible frameworks

MCP is a protocol β€” any framework that speaks it can mount this server.

Claude Agent SDKAnthropic
OpenAI AgentsOpenAI
Vercel AI SDKVercel
LangChainLangChain
LlamaIndexLlamaIndex
CrewAICrewAI
MastraMastra
Any MCP clientProtocol

Frequently asked questions

Run `npx -y @codespar/mcp-wompi` and add the config block above to your MCP client β€” Claude, Cursor, VS Code, or any MCP-compatible client. No build step, no SDK required. Prefer hosted? CodeSpar's managed tier runs it for you with auth handled.
Wompi β€” MCP server Β· 22 tools | CodeSpar