Gateway colombiano (do grupo Davivienda) com ampla cobertura de recebimento: cartões, débito bancário PSE, carteira Daviplata e redes de dinheiro em espécie.
O ePayco dá ao seu agente 8 tools que ele chama direto — escolha as que precisar, no Claude, Cursor ou qualquer cliente MCP.
tokenize_card — Create a one-time card token (POST /v1/tokens on api.secure.payco.co). The token is then bound to a customer via create_customer and charged via charge_card.create_customer — Create an ePayco customer bound to a card token (POST /payment/v1/customer/create). Returns customer_id used by charge_card.charge_card — Charge a tokenized card (POST /payment/v1/charge/create). Amounts in COP unless currency says otherwise. Test mode is controlled by EPAYCO_TEST.// 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("tokenize_card", { /* ... */ });$ npm install @codespar/mcp-epaycoAdicione esta entrada ao seu claude_desktop_config.json (ou a config de qualquer cliente compatível com MCP).
{
"mcpServers": {
"epayco": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-epayco"
],
"env": {
"EPAYCO_PUBLIC_KEY": "<your_epayco_public_key>",
"EPAYCO_PRIVATE_KEY": "<your_epayco_private_key>"
}
}
}
}Depois de reiniciar, seu agente pode chamar qualquer uma das 8 ferramentas abaixo — teste tokenize_card primeiro.
Necessárias pra autenticar o server. Armazenadas criptografadas ao usar a hospedagem gerenciada da CodeSpar.
EPAYCO_PUBLIC_KEYePayco public key
EPAYCO_PRIVATE_KEYePayco private key
EPAYCO_TEST"true" flags payloads as test mode. Defaults to "true" — set "false" for production.
Cada ferramenta é independente — seu agente carrega só o que precisa pra reduzir contexto e tempo de resposta.
tokenize_cardcreate_customercharge_cardget_transactioncreate_pse_paymentget_pse_transactionlist_pse_bankscreate_cash_paymentMCP é um protocolo — qualquer framework que o fale pode montar este server.