Payments

stripe-billing-mcp

Python-based Stripe MCP focused on billing operations. Customers, subscriptions, invoices, checkout sessions, and revenue metrics. Free tier: 10 writes/day.

UntestedKey Required 🔑
View on GitHubby CSOAI-ORG
README badge
MCP Select stripe-billing-mcp benchmark badge
[![MCP Select](https://mcpselect.com/badges/stripe-billing-mcp.svg)](https://mcpselect.com/servers/stripe-billing-mcp/)

Install config

Claude Desktop (macOS)
// Requires STRIPE_SECRET_KEY
{"mcpServers": {"stripe-billing": {"command": "python", "args": ["-m", "stripe_billing_mcp"], "env": {"STRIPE_SECRET_KEY": "sk_test_..."}}}}
Cursor
{"mcpServers": {"stripe-billing": {"command": "python", "args": ["-m", "stripe_billing_mcp"], "env": {"STRIPE_SECRET_KEY": "sk_test_..."}}}}
VS Code
// .vscode/mcp.json
{
  "servers": {
    "stripe-billing": {
      "command": "python",
      "args": ["-m", "stripe_billing_mcp"],
      "env": {"STRIPE_SECRET_KEY": "sk_test_..."}
    }
  }
}

Pros

  • +Billing-focused: subscriptions, invoices, checkout
  • +Revenue metrics: MRR, ARR, churn
  • +Free tier available

Cons

  • Requires STRIPE_SECRET_KEY
  • Free tier limited to 10 writes/day
  • Python — requires pip install

Best for

Billing operations, subscription management, revenue tracking

Related servers in Payments

Frequently asked questions

How do I install stripe-billing-mcp?

Copy the config above into your AI assistant's MCP settings file:

  • Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Cursor: Settings → MCP → Add Server
  • VS Code: .vscode/mcp.json
Does it require an API key?

Yes. You need to set the STRIPE_SECRET_KEY environment variable. We could not test this server without credentials, so our evaluation is based on documentation and community reports.

How were these results measured?

We run each server through a standardized test harness that:

  1. Installs the server via npx in a fresh environment
  2. Discovers available tools using the MCP SDK
  3. Executes real tasks (navigate, click, screenshot, etc.)
  4. Validates outputs with semantic assertions (not string matching)
  5. Measures latency percentiles and pass rate

All test scripts are open source on GitHub.

Related categories