Stripe Mcp Server
@Lokesh-2025
About Stripe Mcp Server
Connect Claude to your Stripe account via natural language. Query customers, revenue, invoices, subscriptions, disputes, and issue refunds — 7 tools, idempotency-safe writes, pinned API version to prevent silent breakage.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"stripe": {
"command": "node",
"args": [
"/path/to/stripe-mcp-server/index.js"
],
"env": {
"STRIPE_SECRET_KEY": "<YOUR_STRIPE_RESTRICTED_KEY>"
}
}
}
}Tools
7List recent Stripe customers
Total revenue from successful charges in a date range
List invoices by status (`open` = unpaid)
List recent failed charges with failure reasons
Get all subscriptions for a customer
Issue a full or partial refund
List disputes/chargebacks with evidence deadlines
Overview
What is Stripe MCP Server?
A Model Context Protocol (MCP) server that lets you query Stripe data and take actions — like listing customers, checking revenue, finding unpaid invoices, and issuing refunds — all through natural language. It connects any MCP client (e.g., Claude) to your Stripe account.
How to use Stripe MCP Server?
Install via Git clone and npm, then set your STRIPE_SECRET_KEY in a .env file. Run manually with that environment variable, or add the server to your Claude Desktop configuration (claude_desktop_config.json) for seamless integration.
Key features of Stripe MCP Server
- Query customers, revenue, invoices, subscriptions, disputes, and failed payments.
- Issue full or partial refunds by charge ID.
- Works with any MCP‑compatible client (Claude, etc.).
- Uses your own Stripe secret API key.
- Simple command‑line or desktop configuration.
Use cases of Stripe MCP Server
- Ask your AI assistant “How much revenue did I make last month?” and get an instant answer.
- “Show me all unpaid invoices” – then drill into specific customers.
- “List my last 20 customers” to review recent activity.
- “What failed payments happened recently?” to identify churn signals.
- “Refund charge ch_XYZ for $10” without opening Stripe’s dashboard.
FAQ from Stripe MCP Server
What does Stripe MCP Server do that Stripe’s web dashboard doesn’t?
It lets you interact with Stripe through natural language inside a chat interface (like Claude), without needing to navigate the dashboard or write API calls.
What are the runtime dependencies?
Node.js 18+ and a Stripe account with a secret API key (use a restricted key for production).
Where does my Stripe data live?
All data stays in Stripe’s cloud; the server only queries the Stripe API using your key. No data is stored locally.
Are there any known limits or restrictions?
The README does not mention explicit rate limits. Each tool has configurable result limits (e.g., limit parameter from 1–100 for list tools).
What transport and authentication does the server use?
It communicates over standard HTTP to the Stripe API, authenticated via your STRIPE_SECRET_KEY environment variable. There is no additional authentication layer for the MCP client.
More Finance & Commerce MCP servers
Financial Modeling Prep MCP (Model Context Protocol)
imbenrabiA Model Context Protocol (MCP) implementation for Financial Modeling Prep, enabling AI assistants to access and analyze financial data, stock information, company fundamentals, and market insights.
Awesome Crypto MCP Servers
badkkA collection of crypto MCP servers.
Financial Modeling Prep MCP Server
cdtaitFinancial Modeling Prep MCP Server
Crypto Fear & Greed Index MCP Server
kukapayProviding real-time and historical Crypto Fear & Greed Index data
Alpaca Trading MCP Server
laukikkMCP for the Alpaca trading API to manage stock and crypto portfolios, place trades, and access market data
Comments