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.
Integrations
Allows integration with Stripe APIs through function calling, enabling operations such as creating/reading customers, products, prices, payment links, invoices, invoice items, as well as retrieving balance information, creating refunds, reading payment intent information, and searching Stripe documentation.
条纹模型上下文协议
Stripe模型上下文协议服务器允许您通过函数调用与 Stripe API 集成。该协议支持各种工具与不同的 Stripe 服务进行交互。
设置
要使用 npx 运行 Stripe MCP 服务器,请使用以下命令:
请务必将YOUR_STRIPE_SECRET_KEY
替换为你的实际 Stripe 密钥。或者,你也可以在环境变量中设置 STRIPE_SECRET_KEY。
与 Claude Desktop 一起使用
将以下内容添加到你的claude_desktop_config.json
中。更多详情请参见此处。
如果你正在使用 Docker
可用工具
工具 | 描述 |
---|---|
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 | 阅读优惠券信息 |
documentation.read | 搜索 Stripe 文档 |
调试服务器
要调试您的服务器,您可以使用MCP Inspector 。
首先搭建服务器
在终端中运行以下命令:
使用 Docker 构建
首先搭建服务器
在终端中运行以下命令:
指示
- 用您的实际 Stripe API 密钥替换
YOUR_STRIPE_SECRET_KEY
。 - 运行命令启动 MCP Inspector。
- 在浏览器中打开 MCP Inspector UI,然后单击“连接”以启动 MCP 服务器。
- 您可以查看所选工具的列表并单独测试每个工具。
This server cannot be installed
Stripe 模型上下文协议服务器允许您通过函数调用与 Stripe API 集成。该协议支持各种工具与不同的 Stripe 服务进行交互。