Agentic Commerce Protocol da Stripe. Checkout de agente de IA, delegação de pagamento, descoberta de produto e gestão de carrinho.
O Stripe ACP dá ao seu agente 24 tools que ele chama direto — escolha as que precisar, no Claude, Cursor ou qualquer cliente MCP.
create_checkout — Create an ACP checkout session with a seller. The agent sends line items and buyer info; the seller returns pricing, fulfillment options, and payment handlers.get_checkout — Retrieve the current state of an ACP checkout session, including status, pricing, and available payment methodsupdate_checkout — Update an ACP checkout session — modify quantities, shipping address, or fulfillment selections// 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_checkout", { /* ... */ });$ npm install @codespar/mcp-stripe-acpAdicione esta entrada ao seu claude_desktop_config.json (ou a config de qualquer cliente compatível com MCP).
{
"mcpServers": {
"stripe-acp": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-stripe-acp"
],
"env": {
"STRIPE_API_KEY": "<your_stripe_api_key>"
}
}
}
}Depois de reiniciar, seu agente pode chamar qualquer uma das 24 ferramentas abaixo — teste create_checkout primeiro.
Necessárias pra autenticar o server. Armazenadas criptografadas ao usar a hospedagem gerenciada da CodeSpar.
STRIPE_API_KEYAPI key for stripe-acp
Cada ferramenta é independente — seu agente carrega só o que precisa pra reduzir contexto e tempo de resposta.
create_checkoutget_checkoutupdate_checkoutcomplete_checkoutcancel_checkoutcreate_customerlist_customerscreate_payment_linkMCP é um protocolo — qualquer framework que o fale pode montar este server.