Stripe MCP Server

v2026.6

Stripe

MCPpaymentsbillingfintechmcp
84
Strong
About This MCP

Stripe's official MCP server from the open-source agent toolkit. Exposes tools for customers, products, prices, payment links, invoices, refunds, balance, disputes, and subscriptions plus Stripe documentation search. Available as the @stripe/mcp stdio package or the hosted remote server at mcp.stripe.com with OAuth.

Last Evaluated: June 10, 2026
Official Website

Trust Vector Analysis

Dimension Breakdown

🚀Performance & Reliability
+
api reliability

API stability and uptime analysis of the underlying Stripe API

Evidence
Stripe StatusBuilt directly on the Stripe API, which maintains historically high uptime backed by Stripe's production payments infrastructure
highVerified: 2026-06-10
operation success rate

Operation success testing across the documented tool set in test mode

Evidence
Stripe Agent Toolkit RepositoryTools are thin, well-tested wrappers over stable Stripe API endpoints (customers, invoices, payment links, refunds, subscriptions)
highVerified: 2026-06-10
rate limit handling

Rate limiting behavior testing under sustained tool-call load

Evidence
Stripe Rate Limits DocumentationInherits Stripe API rate limits with standard 429 responses; limits are generous for typical agent workloads
mediumVerified: 2026-06-10
search accuracy

Relevance assessment of documentation search results for common integration queries

Evidence
Stripe MCP DocumentationIncludes a Stripe documentation search tool that returns relevant docs for integration questions alongside account-data tools
mediumVerified: 2026-06-10
error recovery

Error handling testing with invalid parameters, missing permissions, and declined operations

Evidence
Stripe Agent Toolkit RepositorySurfaces Stripe's structured error objects (decline codes, validation errors) to the agent, enabling informed retries
mediumVerified: 2026-06-10
🛡️Security
+
authentication security

Authentication mechanism review for stdio and hosted transports

Evidence
Stripe MCP DocumentationLocal server authenticates with Stripe API keys (restricted keys supported); hosted server at https://mcp.stripe.com uses OAuth with explicit consent
highVerified: 2026-06-10
scope limitation

Permission scope testing with restricted keys across read and write tools

Evidence
Stripe Restricted API Keys DocumentationRestricted API Keys allow per-resource read/write permissions, so the server can be limited to exactly the tools and access levels needed
highVerified: 2026-06-10
token exposure risk

Token storage and exposure-surface analysis for local configuration files

Evidence
Stripe MCP Documentationstdio mode requires placing a secret key in client configuration; a leaked unrestricted key grants full account access, making restricted keys essential
mediumVerified: 2026-06-10
action auditability

Audit logging review of API request logs and event history

Evidence
Stripe Dashboard LogsEvery tool call is an API request visible in Stripe Dashboard request logs and events, attributable to the specific key or OAuth grant
highVerified: 2026-06-10
unauthorized action risk

Threat modeling of write-capable financial tools; strongest case among evaluated servers for read-only defaults and human-in-the-loop confirmation on writes

Evidence
Stripe MCP DocumentationTools include money-movement operations (refunds, payment links, invoices, subscription changes); an agent acting on injected or mistaken instructions can cause direct financial impact without human confirmation
highVerified: 2026-06-10
🔒Privacy & Compliance
+
payment data exposure

Data flow analysis of tool results containing customer and payment data

Evidence
Stripe MCP DocumentationCustomer records, invoice details, and payment metadata returned by tools flow into the LLM provider's context; raw card numbers are never exposed by the Stripe API
highVerified: 2026-06-10
sensitive data protection

Review of Stripe compliance posture and the data classes reachable via the tool surface

Evidence
Stripe Security DocumentationStripe is PCI-DSS Level 1 certified and SOC 2 audited; card data is tokenized server-side and not retrievable through MCP tools
highVerified: 2026-06-10
organization data control

Access control review of key management and OAuth grant administration

Evidence
Stripe Keys and Permissions DocumentationAccount owners control exposure via restricted keys, test vs live mode separation, and OAuth grant revocation
mediumVerified: 2026-06-10
third party data sharing

Analysis of downstream data sharing once tool results leave Stripe

Evidence
Stripe Privacy PolicyCustomer PII retrieved via tools is shared with the user's LLM provider under that provider's data policy, outside Stripe's compliance boundary
mediumVerified: 2026-06-10
👁️Trust & Transparency
+
documentation quality

Documentation completeness and accuracy review

Evidence
Stripe MCP DocumentationFirst-class documentation page covering hosted and local setup, full tool list, permissions guidance, and security recommendations
highVerified: 2026-06-10
operation visibility

Logging and traceability assessment via Dashboard logs

Evidence
Stripe Dashboard Request LogsAll operations appear in Dashboard request logs and the events stream with full request/response detail
highVerified: 2026-06-10
open source transparency

Source code review of the published toolkit and MCP package

Evidence
Stripe Agent Toolkit RepositoryMIT-licensed open source (approximately 1,601 stars); tool implementations are fully auditable in the stripe/agent-toolkit repository (being renamed stripe/ai)
highVerified: 2026-06-10
api coverage clarity

Comparison of documented tool surface against the shipped package

Evidence
Stripe MCP DocumentationTool list is explicitly enumerated (customers, products, prices, payment links, invoices, refunds, balance, disputes, subscriptions, doc search) with per-tool enablement flags
highVerified: 2026-06-10
⚙️Operational Excellence
+
ease of setup

Setup complexity assessment for both stdio and hosted transports

Evidence
Stripe MCP DocumentationOne-line npx @stripe/mcp setup with selectable tools, or zero-install hosted server at https://mcp.stripe.com via OAuth
highVerified: 2026-06-10
api performance

Latency observation across representative tool calls

Evidence
Stripe API DocumentationStripe API responses are typically fast (low hundreds of milliseconds); tool wrappers add negligible overhead
mediumVerified: 2026-06-10
reliability

Uptime analysis of Stripe infrastructure

Evidence
Stripe StatusHosted MCP and underlying API ride on Stripe's production infrastructure with strong historical availability
highVerified: 2026-06-10
feature coverage

Feature completeness assessment against the full Stripe API surface

Evidence
Stripe Agent Toolkit RepositoryCovers core billing and payments objects plus doc search; advanced surfaces (Connect, Treasury, Radar) are not fully exposed as tools
highVerified: 2026-06-10
community adoption

Community activity and adoption analysis

Evidence
Stripe Agent Toolkit RepositoryApproximately 1,601 GitHub stars with active first-party maintenance; widely referenced as the canonical payments MCP server
mediumVerified: 2026-06-10
Strengths
  • +First-party, MIT-licensed open source implementation maintained by Stripe
  • +Restricted API Keys enable precise per-resource, read-only or write scoping
  • +Hosted remote option with OAuth avoids placing secret keys in client config
  • +Full auditability via Stripe Dashboard request logs and events
  • +Backed by PCI-DSS Level 1 and SOC 2 compliant infrastructure
  • +Built-in Stripe documentation search alongside account tools
  • +Test mode allows safe end-to-end agent evaluation before live use
Limitations
  • !Money-movement tools (refunds, invoices, payment links, subscriptions) make misuse directly costly
  • !No built-in human confirmation step on write operations; must be enforced by the client
  • !Customer PII in tool results is shared with the LLM provider
  • !Unrestricted secret keys in stdio config are a severe single point of failure
  • !Tool coverage omits advanced surfaces like Connect and Treasury
  • !Agent errors in live mode can require manual financial remediation
Metadata
repository: https://github.com/stripe/agent-toolkit
package name: @stripe/mcp
license: MIT
maintained by: Stripe
github stars: 1601
remote endpoint: https://mcp.stripe.com
authentication: Stripe API keys / Restricted API Keys (stdio); OAuth (hosted)
transport types
0: stdio
1: streamable-http (hosted)
installation methods
0: npx @stripe/mcp
1: Remote MCP endpoint
compliance
0: PCI-DSS Level 1
1: SOC 2
mcp version: 1.0

Use Case Ratings

financial analysis

Strong for querying balances, disputes, subscriptions, and revenue objects directly from the source of truth

customer support

Excellent for support agents looking up customers, invoices, and issuing scoped refunds with proper guardrails

code generation

Doc search plus live test-mode tools make it very effective for building Stripe integrations

data analysis

Good for ad-hoc account analysis, though bulk analytics is better served by Stripe Sigma or data exports

legal compliance

Dispute and record access is useful, but PII flowing to LLM providers requires careful review