prime-agent-stripe-mcp
Provides tools to interact with Stripe's official MCP server, enabling management of Stripe resources such as products, prices, customers, subscriptions, billing, reporting, and documentation, with support for OAuth authentication and test-mode operations.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@prime-agent-stripe-mcpshow me all test-mode customers created this month"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
prime-agent-stripe-mcp
Official Stripe MCP integration for Prime Agent.
Prime Agent connects to Stripe's official remote MCP server at
https://mcp.stripe.com. The agent can then inspect and manage Stripe
resources through the same API surface as other MCP clients.
Stripe's MCP server is in public preview. It exposes both read and write tools. Keep the connection in test mode while developing.
┌─────────────────────────────────┐ ┌─────────────────────────────────┐
│ │ from stripe import │ │ │ │ mcp.stripe.com │ │
│ │ stripe │ │ │ │ API · billing · reporting │ │
│ │ await stripe.list_tools() │──┼ OAuth 2.1 + PKCE │ │ products · customers │ │
│ │ await stripe.call_tool( │ │ │ │ subscriptions · events │ │
│ auth.json: mcp:stripe │ │ │ documentation search │ │
└─────────────────────────────────┘ └─────────────────────────────────┘Why this integration
Stripe-hosted server — no self-hosted proxy and no Stripe API key in this repository.
Prime Agent-native — the module extends
McpIntegrationand exposes the live tool inventory from the Python kernel.OAuth 2.1 with PKCE — the browser approval is stored only in Prime Agent's private
auth.jsonundermcp:stripe.Test-mode friendly — authorize the Liminal Stripe account and use only test-mode resources during development.
Related MCP server: stripe-mcp
Install
Requires Prime Agent with its Python kernel and Python 3.10 or newer.
Clone the repository and link the skill into place:
git clone https://github.com/gbrlpzz/prime-agent-stripe-mcp.git ~/prime-agent-stripe-mcp rm -rf ~/.agents/skills/stripe ln -s ~/prime-agent-stripe-mcp ~/.agents/skills/stripeInstall the editable package into Prime Agent's kernel environment:
uv pip install --python ~/.prime/agent/kernel-venv/bin/python -e ~/prime-agent-stripe-mcpAdd the remote server to Prime Agent's MCP settings once:
{ "mcpServers": { "stripe": { "type": "http", "url": "https://mcp.stripe.com", "oauth": true } } }Reload Prime Agent and authorize the Stripe account:
/reload /mcp login stripe
Approve the Liminal Stripe account, not a personal or production account
that should stay outside this development workflow. Prime Agent stores the
credential as mcp:stripe. It is never written to this repository.
Usage
from stripe import stripe, auth_status
print(auth_status()) # credential state, no token values
tools = await stripe.list_tools() # live Stripe MCP inventory
# Inspect the live schema before calling a read or write tool.
result = await stripe.call_tool("<live-tool-name>", {"<live-argument>": "..."})auth_status() returns a small dict without secrets:
{"enabled": True, "expires_fresh": True, "type": "oauth"}Tool names and parameters belong to Stripe and may change during the public
preview. Call list_tools() first, or use the methods bound automatically
from the live inventory.
The server includes tools for Stripe API discovery, API reads and writes, account information, billing resources, documentation, and reporting. Write operations change Stripe data. Ask for human confirmation before creating, updating, cancelling, refunding, or deleting anything.
Token refresh fallback
Prime Agent refreshes the stored token automatically. On hosts where that is unavailable, call the module-level fallback:
from stripe import refresh
refresh() # exchanges the stored refresh token; rewrites auth.json with mode 600Liminal development workflow
Add your personal user as a team member of the Liminal Stripe account.
Authorize this integration as that user.
Confirm the Stripe dashboard is in test mode.
Create test products, prices, customers, and subscriptions only.
Configure the Supabase
stripe-webhookfunction with the resulting test webhook signing secret separately. The MCP credential does not replace the server-sideSTRIPE_SECRET_KEYorSTRIPE_WEBHOOK_SECRET.
Troubleshooting
Symptom | Fix |
| Run |
Calls fail after a long pause | Run |
A tool name is unknown | Re-run |
Development
python3 tests/test_skill.py # standalone suite, no Prime Agent needed
~/.prime/agent/kernel-venv/bin/python -m pytest tests/ # inside Prime Agent's kernelCI runs the standalone suite on every push to main.
Security
No credentials live in this repository or its Git history.
OAuth tokens live only in Prime Agent's private
auth.json.The module talks only to
https://mcp.stripe.comand Stripe's OAuth authorization server.Keep all development mutations in Stripe test mode.
Never put Stripe secret values or private-key material in source, tests, documentation, or Git history.
License
MIT — see LICENSE. Stripe is a trademark of Stripe, Inc.; this is an independent client integration for Stripe's official MCP server (see NOTICE).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA remote MCP server implementation that integrates with Stripe, enabling AI assistants to interact with the Stripe API for payment processing functionality.
- AlicenseNot gradedqualityCmaintenanceMCP server for the Stripe API with 10 tools covering payments, customers, invoices, and subscriptions. Generated with MCPForge. Destructive and financial operations require human approval.40MIT
- AlicenseNot gradedqualityCmaintenanceEnables natural language interaction with Stripe accounts to query customers, revenue, invoices, subscriptions, disputes, and issue refunds.591MIT
- AlicenseNot gradedqualityDmaintenanceEnables integration with Stripe APIs through function calling, supporting operations on customers, products, invoices, subscriptions, and more.10,572MIT
Related MCP Connectors
Stripe MCP Pack — read-only access to Stripe data via API key.
MCP server integrating with Stripe - tools for customers, products, payments, and more.
Agent Commerce Protocol MCP — bridges Stripe ACP + Google AP2 + Coinbase x402 for agent payments
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gbrlpzz/prime-agent-stripe-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server