Gateway colombiano (del grupo Davivienda) con amplia cobertura de cobro: tarjetas, débito bancario PSE, billetera Daviplata y redes de efectivo.
ePayco le da a tu agente 8 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier 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-epaycoAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con 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>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 8 herramientas de abajo — probá tokenize_card primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de 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 herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
tokenize_cardcreate_customercharge_cardget_transactioncreate_pse_paymentget_pse_transactionlist_pse_bankscreate_cash_paymentMCP es un protocolo — cualquier framework que lo hable puede montar este server.