Principal adquirente nativo do México. Cobranças via links de pagamento hospedados ou checkout transparente, para seu agente cobrar cartões MX sem burocracia local.
O Clip dá ao seu agente 6 tools que ele chama direto — escolha as que precisar, no Claude, Cursor ou qualquer cliente MCP.
create_payment_link — Create a hosted checkout / payment link (POST /v2/checkout). The buyer opens the returned payment_request_url and pays with card, Clip account or other enabled MX methods. Amount is in MXN pesos (decimal, e.g. 150.00).get_payment_link — Fetch a checkout / payment link by id (GET /v2/checkout/{id}) — status, amount, payment outcome.create_payment — Create a transparent card charge (POST /payments) using a card token generated by Clip's client-side SDK. Use create_payment_link instead when you have no tokenization front-end — raw card numbers are never accepted here.// 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_link", { /* ... */ });$ npm install @codespar/mcp-clipAdicione esta entrada ao seu claude_desktop_config.json (ou a config de qualquer cliente compatível com MCP).
{
"mcpServers": {
"clip": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-clip"
],
"env": {
"CLIP_AUTH_TOKEN": "<your_clip_auth_token>"
}
}
}
}Depois de reiniciar, seu agente pode chamar qualquer uma das 6 ferramentas abaixo — teste create_payment_link primeiro.
Necessárias pra autenticar o server. Armazenadas criptografadas ao usar a hospedagem gerenciada da CodeSpar.
CLIP_AUTH_TOKENBasic auth token from the Clip developer dashboard
CLIP_BASE_URLAPI base URL override. Defaults to https://api.payclip.com.
Cada ferramenta é independente — seu agente carrega só o que precisa pra reduzir contexto e tempo de resposta.
create_payment_linkget_payment_linkcreate_paymentget_paymentlist_paymentsrefund_paymentMCP é um protocolo — qualquer framework que o fale pode montar este server.