Agentic Commerce Protocol de Stripe. Checkout de agente de IA, delegación de pago, descubrimiento de producto y gestión de carrito.
Stripe ACP le da a tu agente 24 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier 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-acpAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"stripe-acp": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-stripe-acp"
],
"env": {
"STRIPE_API_KEY": "<your_stripe_api_key>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 24 herramientas de abajo — probá create_checkout primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
STRIPE_API_KEYAPI key for stripe-acp
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
create_checkoutget_checkoutupdate_checkoutcomplete_checkoutcancel_checkoutcreate_customerlist_customerscreate_payment_linkMCP es un protocolo — cualquier framework que lo hable puede montar este server.