Stripe MCP Server — Hosted Payments, Any AI Agent
MCP Server shield Key RequiredPayments, customers, subscriptions, invoices via Stripe's official MCP
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"stripe-payments": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-stripe",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the create_payment_intent tool to create a stripe paymentintent to initiate a payment flow for a specified amount and currency”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
The Stripe MCP server connects AI agents to your Stripe account — creating and listing payments, customers, invoices, and subscriptions. Hosted on Aerostack with one URL for any MCP client, it lets an agent pull revenue data, manage billing, and automate payment workflows from chat.
description Overview
Stripe Payments MCP
Official proxy MCP — Payments, customers, subscriptions, invoices via Stripe's official MCP
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-stripe
Overview
Stripe Payments is a proxy MCP server that forwards requests directly to the official Stripe MCP endpoint at https://mcp.stripe.com. All tools are maintained by Stripe — new tools are available immediately without any Aerostack update.
Type: Proxy (hosted by Stripe)
Auth: Bearer token via STRIPE_SECRET_KEY
Available Tools
- create_payment_intent — Create a Stripe PaymentIntent to initiate a payment flow for a specified amount and currency
- list_customers — List Stripe customers with optional filtering by email or creation date and pagination
- get_customer — Retrieve a Stripe customer by ID with payment methods, subscriptions, and billing details
- create_invoice — Create a Stripe invoice for a customer that can be sent, finalized, and collected automatically
- list_subscriptions — List Stripe subscriptions with optional filters for customer, status, or price ID
Configuration
| Variable | Required | Description | How to Get |
|---|---|---|---|
STRIPE_SECRET_KEY |
Yes | Stripe Secret API Key (sk_live_... or sk_test_...) | dashboard.stripe.com → Developers → API keys → Secret key |
Setup
Add to Aerostack Workspace
- Go to app.aerostack.dev/workspaces → Create Workspace
- Inside your workspace → Add Server → search "Stripe Payments"
- Enter your
STRIPE_SECRET_KEYwhen prompted — stored encrypted, injected automatically
Once added, every AI agent in your workspace can use Stripe tools automatically.
Usage
Example Prompts
"List all my Stripe items and summarize the most recent ones"
"Find anything related to [keyword] in Stripe"
"Create a new entry with the following details: ..."
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-stripe \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-STRIPE-SECRET-KEY: your-key' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"create_payment_intent","arguments":{}}}'
License
MIT
terminal Tools (5)
Available tools on this MCP server. Each tool can be called directly from any AI agent.
create_payment_intent #1 Create a Stripe PaymentIntent to initiate a payment flow for a specified amount and currency
list_customers #2 List Stripe customers with optional filtering by email or creation date and pagination
get_customer #3 Retrieve a Stripe customer by ID with payment methods, subscriptions, and billing details
create_invoice #4 Create a Stripe invoice for a customer that can be sent, finalized, and collected automatically
list_subscriptions #5 List Stripe subscriptions with optional filters for customer, status, or price ID
Details
Publisher
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
More in Payments
Browse Payments MCPs →Frequently asked questions
What is the Stripe MCP server and what can it do? +
The Stripe MCP server is hosted on Aerostack and exposes these tools to your AI agent: `create_payment_intent`, `list_customers`, `get_customer`, `create_invoice`, `list_subscriptions`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.
Is the Stripe MCP server hosted, or do I have to run it myself? +
It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.
Which AI agents and editors can use the Stripe MCP server? +
Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Stripe MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.
How do I install the Stripe MCP server in Claude Desktop? +
Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-stripe": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-stripe"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.
How do I use the Stripe MCP server in Cursor? +
In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-stripe", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-stripe"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.
Does Stripe MCP require authentication? +
Yes. Stripe uses Bearer token authentication. Set your token as a workspace secret in the Aerostack dashboard.