Secure Stripe access for AI agents
Look up account info, search and read Stripe API resources, create refunds, and search Stripe's documentation, using Stripe's official MCP server.
Connect Stripe to the gateway to give agents access to your Stripe account — account info, generic API resource search/read/write, refunds, an implementation planner for building Stripe integrations, and Stripe's documentation search.
Server URL: https://mcp.stripe.com/
Setup
Stripe's MCP server supports Dynamic Client Registration, so there's no app to create on Stripe's side — the gateway registers an OAuth client automatically per org. Only the redirect URI needs to be reachable; no client ID/secret to enter. See Dynamic client registration.
Dynamic client registration
- In the gateway, open Resources -> Add -> Stripe.
- Choose Dynamic Client Registration. The gateway self-registers an OAuth client with Stripe; no client ID/secret needed.
- Each user authorizes their own Stripe account.
Stripe's own account and role-based permissions control what each user can reach — the gateway does not widen access beyond what the authenticated user could already do in Stripe.
Available tools
| Tool | Description |
|---|---|
get_stripe_account_info | Get information about the connected Stripe account |
search_stripe_resources | Search across Stripe API resources (customers, charges, invoices, etc.) |
fetch_stripe_resources | Fetch specific Stripe API resources by ID |
stripe_api_search | Search the Stripe API for relevant endpoints |
stripe_api_details | Get details about a specific Stripe API endpoint |
stripe_api_read | Make a read (GET) request against the Stripe API |
stripe_api_write | Make a write (POST/DELETE) request against the Stripe API |
create_refund | Create a refund for a charge or payment intent |
stripe_implementation_planner | Plan an implementation for integrating with Stripe |
search_stripe_documentation | Search Stripe's documentation |
send_stripe_mcp_feedback | Send feedback about the Stripe MCP server to Stripe |
Policy examples
Read-only Stripe access — deny refunds and generic API writes:
Deny - MCP: stripe - Tools: create_refund, stripe_api_write - Effect: DenyScope an agent to documentation and API discovery only:
Allow - MCP: stripe - Tools: search_stripe_documentation, stripe_api_search, stripe_api_details, stripe_implementation_planner - Effect: Allow