Community MCP server for Stripe payment integration.
npx -y @stripe/mcp --tools=all --api-key=sk_test_xxx
{
"mcpServers": {
"stripe": {
"args": [
"-y",
"@stripe/mcp",
"--tools=all",
"--api-key=sk_test_xxx"
],
"command": "npx"
}
}
}Create a new Stripe customer
{
"type": "object",
"required": [
"email"
],
"properties": {
"name": {
"type": "string"
},
"email": {
"type": "string"
}
}
}// Input
{
"name": "Alice",
"email": "alice@example.com"
}// Output
{
"id": "cus_abc123",
"email": "alice@example.com"
}Create a payment intent
{
"type": "object",
"required": [
"amount",
"currency"
],
"properties": {
"amount": {
"type": "integer"
},
"currency": {
"type": "string"
},
"customer": {
"type": "string"
}
}
}// Input
{
"amount": 2000,
"currency": "eur",
"customer": "cus_abc"
}// Output
{
"id": "pi_xyz",
"status": "requires_confirmation"
}Create a subscription for a customer
Community MCP server for Stripe payment integration.
Stripe provides 4 tools including create_customer, create_payment, create_subscription, and 1 more.
Stripe offers a free tier with 200 calls per month. For higher usage, paid plans start at €9.9/month.
You can install Stripe using the following command: npx -y @stripe/mcp --tools=all --api-key=sk_test_xxx. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
{
"type": "object",
"required": [
"customer",
"price"
],
"properties": {
"price": {
"type": "string"
},
"customer": {
"type": "string"
}
}
}// Input
{
"price": "price_xyz",
"customer": "cus_abc"
}// Output
{
"id": "sub_123",
"status": "active"
}List invoices for a customer
{
"type": "object",
"required": [
"customer"
],
"properties": {
"customer": {
"type": "string"
}
}
}// Input
{
"customer": "cus_abc"
}// Output
{
"invoices": [
{
"id": "inv_1",
"amount": 5000,
"status": "paid"
}
]
}Stripe is listed under the Finance & Accounting category in the AgentForge MCP registry.
Stripe has a current uptime of 99.8% with an average response time of 340ms.
To connect Stripe, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Stripe's tools via the Model Context Protocol.