Skip to main content
Glama

stripe

Official
by stripe

Protocolo de contexto del modelo Stripe

El servidor del Protocolo de Contexto de Modelo de Stripe permite la integración con las API de Stripe mediante llamadas a funciones. Este protocolo admite diversas herramientas para interactuar con diferentes servicios de Stripe.

Configuración

Para ejecutar el servidor Stripe MCP usando npx, use el siguiente comando:

# To set up all available tools npx -y @stripe/mcp --tools=all --api-key=YOUR_STRIPE_SECRET_KEY # To set up specific tools npx -y @stripe/mcp --tools=customers.create,customers.read,products.create --api-key=YOUR_STRIPE_SECRET_KEY # To configure a Stripe connected account npx -y @stripe/mcp --tools=all --api-key=YOUR_STRIPE_SECRET_KEY --stripe-account=CONNECTED_ACCOUNT_ID

Asegúrate de reemplazar YOUR_STRIPE_SECRET_KEY con tu clave secreta de Stripe. También puedes configurar STRIPE_SECRET_KEY en tus variables de entorno.

Uso con Claude Desktop

Añade lo siguiente a tu claude_desktop_config.json . Consulta aquí para más detalles.

{ "mcpServers": { "stripe": { "command": "npx", "args": [ "-y", "@stripe/mcp", "--tools=all", "--api-key=STRIPE_SECRET_KEY" ] } } }

de si estás usando Docker

{ “mcpServers”: { “stripe”: { “command”: “docker", “args”: [ “run”, "--rm", "-i", “mcp/stripe”, “--tools=all”, “--api-key=STRIPE_SECRET_KEY” ] } } }

Herramientas disponibles

Herramienta

Descripción

customers.create

Crear un nuevo cliente

customers.read

Leer la información del cliente

products.create

Crear un nuevo producto

products.read

Leer la información del producto

prices.create

Crear un nuevo precio

prices.read

Leer información de precios

paymentLinks.create

Crear un nuevo enlace de pago

invoices.create

Crear una nueva factura

invoices.update

Actualizar una factura existente

invoiceItems.create

Crear un nuevo elemento de factura

balance.read

Recuperar información de saldo

refunds.create

Crear un nuevo reembolso

paymentIntents.read

Leer la información de intención de pago

subscriptions.read

Leer la información de suscripción

subscriptions.update

Actualizar la información de suscripción

coupons.create

Crear un nuevo cupón

coupons.read

Leer la información del cupón

disputes.update

Actualizar una disputa existente

disputes.read

Leer información sobre disputas

documentation.read

Buscar documentación de Stripe

Depuración del servidor

Para depurar su servidor, puede utilizar el Inspector MCP .

Primero construya el servidor

npm run build

Ejecute el siguiente comando en su terminal:

# Start MCP Inspector and server with all tools npx @modelcontextprotocol/inspector node dist/index.js --tools=all --api-key=YOUR_STRIPE_SECRET_KEY

Construir usando Docker

Primero construya el servidor

docker build -t mcp/stripe .

Ejecute el siguiente comando en su terminal:

docker run -p 3000:3000 -p 5173:5173 -v /var/run/docker.sock:/var/run/docker.sock mcp/inspector docker run --rm -i mcp/stripe --tools=all --api-key=YOUR_STRIPE_SECRET_KEY

Instrucciones

  1. Reemplace YOUR_STRIPE_SECRET_KEY con su clave secreta de API de Stripe real.

  2. Ejecute el comando para iniciar el Inspector MCP.

  3. Abra la interfaz de usuario de MCP Inspector en su navegador y haga clic en Conectar para iniciar el servidor MCP.

  4. Puede ver la lista de herramientas que seleccionó y probar cada herramienta individualmente.

-
security - not tested
-
license - not tested
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

El servidor del Protocolo de Contexto de Modelo de Stripe permite la integración con las API de Stripe mediante llamadas a funciones. Este protocolo admite diversas herramientas para interactuar con diferentes servicios de Stripe.

  1. Configuración
    1. Uso con Claude Desktop
  2. Herramientas disponibles
    1. Depuración del servidor
      1. Construir usando Docker
      2. Instrucciones

    Related MCP Servers

    • -
      security
      -
      license
      -
      quality
      A Model Context Protocol server that allows LLMs to interact with web content through standardized tools, currently supporting web scraping functionality.
      Last updated -
      1
      MIT License
      • Linux
      • Apple
    • -
      security
      -
      license
      -
      quality
      A server that integrates with Stripe for handling payments, customers, and refunds through the Model Context Protocol, providing a secure API to manage financial transactions.
      Last updated -
      43
      MIT License
      • Apple
    • -
      security
      -
      license
      -
      quality
      Model Context Protocol (MCP) server that interacts with Shopify Dev. This protocol supports various tools to interact with different Shopify APIs.
    • PayPalofficial

      -
      security
      -
      license
      -
      quality
      The PayPal Model Context Protocol server allows you to integrate with PayPal APIs through function calling. This protocol supports various tools to interact with different PayPal services.
      Last updated -
      472
      162
      Apache 2.0
      • Linux
      • Apple

    View all related MCP servers

    MCP directory API

    We provide all the information about MCP servers via our MCP API.

    curl -X GET 'https://glama.ai/api/mcp/v1/servers/stripe/agent-toolkit'

    If you have feedback or need assistance with the MCP directory API, please join our Discord server