PSP chileno de transferencia bancaria instantánea. Complementa a Transbank para merchants que quieren pagos por transferencia bancaria además de tarjetas — los consumidores chilenos suelen preferir transferencias bancarias para transacciones más grandes (sin límite de crédito, sin comisiones de tarjeta).
Khipu le da a tu agente 21 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.
create_payment — Create a Khipu payment (bank-transfer charge). Returns a payment_id and URLs the payer visits to authorize the transfer from their Chilean bank account. Use simplified_transfer_url for in-app redirects and transfer_url for desktop bank-login flows.get_payment — Retrieve a Khipu payment. Pass either payment_id (lookup by id) or notification_token (lookup from a webhook — preferred, since webhooks only contain the token).delete_payment — Delete (cancel) a pending Khipu payment. Only works while the payment has not been paid by the payer.// 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_payment", { /* ... */ });$ npm install @codespar/mcp-khipu@alphaAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"khipu": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-khipu@alpha"
],
"env": {}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 21 herramientas de abajo — probá create_payment primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
KHIPU_API_KEYKhipu v3 API key (sent as x-api-key header). Obtain from Khipu merchant panel → Developers.
KHIPU_RECEIVER_IDKhipu receiver id (merchant id). Required only for legacy v2 HTTP Basic auth; not needed when KHIPU_API_KEY is set.
KHIPU_SECRETKhipu receiver secret. Required only for legacy v2 HTTP Basic auth; not needed when KHIPU_API_KEY is set.
KHIPU_BASE_URLKhipu API base URL. Defaults to https://payment-api.khipu.com/v3.
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
create_paymentget_paymentdelete_paymentconfirm_paymentrefund_paymentlist_paymentspredict_paymentget_merchantsMCP es un protocolo — cualquier framework que lo hable puede montar este server.