Skip to main content
IZ

Izipay

v0.2.0-alpha.2API Keyalpha

Credenciadora enterprise do Peru (apoiada pela Niubiz — Visa + bancos locais). Complementa a Culqi (SMB do Peru) pra merchants peruanos de volume sério. Alpha no npm — todos os paths de endpoint são best-guess já que developers.izipay.pe é fechado por contrato.

20 ferramentas5 env vars🇵🇪 Perualpha — validação pendente

O que seu agente faz

O Izipay dá ao seu agente 20 tools que ele chama direto — escolha as que precisar, no Claude, Cursor ou qualquer cliente MCP.

  • create_chargeAuthorize 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_chargeCapture a previously authorized charge (when capture=false was used in create_charge).
  • cancel_chargeVoid an authorized-but-uncaptured charge. Does not work on captured charges — use refund_charge for those.
Exemplo de chamada
// 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", { /* ... */ });

Instalar

terminal
$ npm install @codespar/mcp-izipay@alpha

Quickstart

Adicione esta entrada ao seu claude_desktop_config.json (ou a config de qualquer cliente compatível com MCP).

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

Depois de reiniciar, seu agente pode chamar qualquer uma das 20 ferramentas abaixo — teste create_charge primeiro.

Variáveis de ambiente · 5

Necessárias pra autenticar o server. Armazenadas criptografadas ao usar a hospedagem gerenciada da CodeSpar.

IZIPAY_USERNAME
obrigatório

Izipay merchant username issued with your acquirer contract

IZIPAY_PASSWORD
obrigatóriosecret

Izipay merchant password used to obtain JWT

IZIPAY_MERCHANT_CODE
obrigatório

Izipay merchant code (codigoComercio)

IZIPAY_ENV
opcional

Environment: sandbox or production. Defaults to production.

IZIPAY_BASE_URL
opcional

Izipay API base URL. Defaults per IZIPAY_ENV. Override if your contract issues a custom host.

Ferramentas disponíveis · 20

Cada ferramenta é independente — seu agente carrega só o que precisa pra reduzir contexto e tempo de resposta.

WRITEcreate_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.
WRITEcapture_charge
Capture a previously authorized charge (when capture=false was used in create_charge).
DELETEcancel_charge
Void an authorized-but-uncaptured charge. Does not work on captured charges — use refund_charge for those.
DELETErefund_charge
Refund a captured charge. Pass amount for a partial refund; omit for a full refund.
WRITEget_charge
Retrieve a charge by Izipay charge id.
WRITEtokenize_card
Tokenize a card for PCI-safe reuse. Returns a token_id to pass into create_charge.card.token_id.
DELETEdelete_token
Delete a stored card token.
WRITEcreate_installment_plan
Create a Peruvian cuotas (installment) plan on a charge. Enables splitting a card payment into N monthly installments, with or without interest, per the issuer's cuota program.

Frameworks compatíveis

MCP é um protocolo — qualquer framework que o fale pode montar este server.

Claude Agent SDKAnthropic
OpenAI AgentsOpenAI
Vercel AI SDKVercel
LangChainLangChain
LlamaIndexLlamaIndex
CrewAICrewAI
MastraMastra
Qualquer cliente MCPProtocolo

Perguntas frequentes

Rode `npx -y @codespar/mcp-izipay` e adicione o bloco de config acima ao seu cliente MCP — Claude, Cursor, VS Code ou qualquer cliente compatível com MCP. Sem build, sem SDK. Prefere hospedado? O tier gerenciado da CodeSpar roda pra você, com a auth resolvida.
Izipay — MCP server · 20 tools | CodeSpar