Peru enterprise acquirer (Niubiz-backed — Visa + local banks). Complements Culqi (Peru SMB) for serious-volume Peruvian merchants. Alpha on npm — all endpoint paths best-guess since developers.izipay.pe is contract-gated.
Izipay gives your agent 20 tools it calls directly — pick the ones it needs, in Claude, Cursor, or any MCP client.
create_charge — Authorize a card payment. Supports 3-D Secure (3DS) challenge flow when required by issuer/brand. Set capture=true for authorize+capture atomically; capture=false to authorize only and capture later via capture_charge.capture_charge — Capture a previously authorized charge (when capture=false was used in create_charge).cancel_charge — Void an authorized-but-uncaptured charge. Does not work on captured charges — use refund_charge for those.// 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_charge", { /* ... */ });$ npm install @codespar/mcp-izipay@alphaAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"izipay": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-izipay@alpha"
],
"env": {
"IZIPAY_USERNAME": "<your_izipay_username>",
"IZIPAY_PASSWORD": "<your_izipay_password>",
"IZIPAY_MERCHANT_CODE": "<your_izipay_merchant_code>"
}
}
}
}After restart, your agent can call any of the 20 tools below — try create_charge first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
IZIPAY_USERNAMEIzipay merchant username issued with your acquirer contract
IZIPAY_PASSWORDIzipay merchant password used to obtain JWT
IZIPAY_MERCHANT_CODEIzipay merchant code (codigoComercio)
IZIPAY_ENVEnvironment: sandbox or production. Defaults to production.
IZIPAY_BASE_URLIzipay API base URL. Defaults per IZIPAY_ENV. Override if your contract issues a custom host.
Each tool is independent — your agent loads only what it needs to reduce context and response time.
create_chargecapture_chargecancel_chargerefund_chargeget_chargetokenize_carddelete_tokencreate_installment_planMCP is a protocol — any framework that speaks it can mount this server.