Stripe MCP Server

✓ verified

Create payments, customers, and invoices through the Stripe API.

Don't have ToolPiper? We'll take you to the download.

Open repository →

Publisher

Stripe

License

MIT

Transport

Local subprocess

Tools

5

What this server does

Stripe's agent-toolkit MCP server wraps the Stripe API so the assistant can create customers, products, prices, payment links, and invoices, and read balances and recent activity. Scope what it can do with a restricted key from the dashboard: a key limited to read-only or to specific resources keeps the blast radius small. Use a test-mode key (sk_test_) while you wire it up, then switch to live only when you trust the flow. The --tools=all flag enables the full surface; narrow it per the upstream docs if you want fewer tools.

Tools included

  • create_customer

    Create a Stripe customer.

  • create_payment_link

    Create a shareable payment link.

  • list_invoices

    List invoices with optional filters.

  • create_product

    Create a product and price.

  • retrieve_balance

    Read the account balance.

The authoritative list comes from the server's tools/list at runtime. This catalog entry may lag the upstream until the next ToolPiper release.

Install in ToolPiper

ToolPiper handles the JSON configuration. Click Install, fill in any required tokens, and the server is ready in your chat.

Don't have ToolPiper? We'll take you to the download.

Install in another client

Install in another MCP client (Claude Desktop, Cursor, Continue, Cline)

Add this to ~/Library/Application Support/Claude/claude_desktop_config.json.

{
  "mcpServers": {
    "stripe": {
      "command": "npx",
      "args": [
        "-y",
        "@stripe/mcp",
        "--tools=all"
      ]
    }
  }
}

Example prompts

  • "Create a payment link for a 49 dollar one-time charge labeled 'Pro upgrade'."

  • "List the last 10 failed invoices and tell me which customers they belong to."

  • "Create a test customer named Acme Corp with email billing@acme.test."

Security notes

The secret key can move real money on a live account. Use a restricted key scoped to the minimum resources, and keep it in test mode until the flow is verified. Treat the key like a password and roll it at dashboard.stripe.com/apikeys if it leaks. Prefer read-only scopes unless the assistant genuinely needs to write.

Related tools