Skip to main content
Glama

stripe

Official
by stripe

ストライプモデルコンテキストプロトコル

Stripeモデルコンテキストプロトコルサーバーを使用すると、関数呼び出しを通じてStripe APIとの統合が可能になります。このプロトコルは、様々なStripeサービスと連携するための様々なツールをサポートしています。

設定

npx を使用して Stripe MCP サーバーを実行するには、次のコマンドを使用します。

# 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

YOUR_STRIPE_SECRET_KEY実際のStripeシークレットキーに置き換えてください。または、環境変数で STRIPE_SECRET_KEY を設定することもできます。

Claude Desktopでの使用

claude_desktop_config.jsonに以下の行を追加してください。詳細はこちらをご覧ください。

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

Dockerを使用している場合

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

利用可能なツール

道具

説明

customers.create

新しい顧客を作成する

customers.read

顧客情報を読む

products.create

新しい製品を作成する

products.read

製品情報を読む

prices.create

新しい価格を作成する

prices.read

価格情報を読む

paymentLinks.create

新しい支払いリンクを作成する

invoices.create

新しい請求書を作成する

invoices.update

既存の請求書を更新する

invoiceItems.create

新しい請求書項目を作成する

balance.read

残高情報を取得する

refunds.create

新しい払い戻しを作成する

paymentIntents.read

支払い意図情報を読み取る

subscriptions.read

サブスクリプション情報を読む

subscriptions.update

サブスクリプション情報を更新する

coupons.create

新しいクーポンを作成する

coupons.read

クーポン情報を読む

disputes.update

既存の紛争を更新する

disputes.read

紛争情報を読む

documentation.read

Stripeドキュメントを検索

サーバーのデバッグ

サーバーをデバッグするには、 MCP Inspectorを使用できます。

まずサーバーを構築する

npm run build

ターミナルで次のコマンドを実行します。

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

Dockerを使ってビルドする

まずサーバーを構築する

docker build -t mcp/stripe .

ターミナルで次のコマンドを実行します。

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

説明書

  1. YOUR_STRIPE_SECRET_KEY実際の Stripe API 秘密キーに置き換えます。

  2. コマンドを実行して、MCP Inspector を起動します。

  3. ブラウザで MCP Inspector UI を開き、「接続」をクリックして MCP サーバーを起動します。

  4. 選択したツールのリストを表示し、各ツールを個別にテストできます。

-
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.

Stripeモデルコンテキストプロトコルサーバーを使用すると、関数呼び出しを通じてStripe APIとの統合が可能になります。このプロトコルは、様々なStripeサービスと連携するための様々なツールをサポートしています。

  1. 設定
    1. Claude Desktopでの使用
  2. 利用可能なツール
    1. サーバーのデバッグ
      1. Dockerを使ってビルドする
      2. 説明書

    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