Skip to main content
ST

Stripe ACP

v0.1.3API Key

Agentic Commerce Protocol de Stripe. Checkout de agente de IA, delegación de pago, descubrimiento de producto y gestión de carrito.

24 herramientas1 env vars🌐 GLOBALestable en npm

Qué puede hacer tu agente

Stripe ACP le da a tu agente 24 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.

  • create_checkoutCreate 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_checkoutRetrieve the current state of an ACP checkout session, including status, pricing, and available payment methods
  • update_checkoutUpdate an ACP checkout session — modify quantities, shipping address, or fulfillment selections
Ejemplo de llamada
// 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", { /* ... */ });

Instalar

terminal
$ npm install @codespar/mcp-stripe-acp

Quickstart

Agregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).

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

Variables de entorno · 1

Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.

STRIPE_API_KEY
obligatoriosecret

API key for stripe-acp

Herramientas disponibles · 24

Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.

WRITEcreate_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.
READget_checkout
Retrieve the current state of an ACP checkout session, including status, pricing, and available payment methods
WRITEupdate_checkout
Update an ACP checkout session — modify quantities, shipping address, or fulfillment selections
READcomplete_checkout
Complete an ACP checkout by submitting a payment token. Finalizes the order with the seller. The checkout must be in 'ready_for_payment' status.
DELETEcancel_checkout
Cancel an ACP checkout session. Releases any held inventory.
WRITEcreate_customer
Create a Stripe customer
READlist_customers
List Stripe customers with optional filters
WRITEcreate_payment_link
Create a shareable Stripe Payment Link for a price

Frameworks compatibles

MCP es un protocolo — cualquier framework que lo hable puede montar este server.

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

Preguntas frecuentes

Corré `npx -y @codespar/mcp-stripe-acp` y agregá el bloque de config de arriba a tu cliente MCP — Claude, Cursor, VS Code o cualquier cliente compatible con MCP. Sin build, sin SDK. ¿Preferís hosted? El tier gestionado de CodeSpar lo corre por vos, con la auth resuelta.
Stripe ACP — MCP server · 24 tools | CodeSpar