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

  1. In the gateway, open Resources -> Add -> Stripe.
  2. Choose Dynamic Client Registration. The gateway self-registers an OAuth client with Stripe; no client ID/secret needed.
  3. 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

ToolDescription
get_stripe_account_infoGet information about the connected Stripe account
search_stripe_resourcesSearch across Stripe API resources (customers, charges, invoices, etc.)
fetch_stripe_resourcesFetch specific Stripe API resources by ID
stripe_api_searchSearch the Stripe API for relevant endpoints
stripe_api_detailsGet details about a specific Stripe API endpoint
stripe_api_readMake a read (GET) request against the Stripe API
stripe_api_writeMake a write (POST/DELETE) request against the Stripe API
create_refundCreate a refund for a charge or payment intent
stripe_implementation_plannerPlan an implementation for integrating with Stripe
search_stripe_documentationSearch Stripe's documentation
send_stripe_mcp_feedbackSend 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: Deny

Scope 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

On this page