Skip to main content
Glama
gbrlpzz

prime-agent-stripe-mcp

by gbrlpzz

prime-agent-stripe-mcp

Official Stripe MCP integration for Prime Agent.

CI License: MIT Python

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.

NOTE

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 McpIntegration and 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.json under mcp: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.

  1. 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/stripe
  2. Install the editable package into Prime Agent's kernel environment:

    uv pip install --python ~/.prime/agent/kernel-venv/bin/python -e ~/prime-agent-stripe-mcp
  3. Add the remote server to Prime Agent's MCP settings once:

    {
      "mcpServers": {
        "stripe": {
          "type": "http",
          "url": "https://mcp.stripe.com",
          "oauth": true
        }
      }
    }
  4. 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 600

Liminal development workflow

  1. Add your personal user as a team member of the Liminal Stripe account.

  2. Authorize this integration as that user.

  3. Confirm the Stripe dashboard is in test mode.

  4. Create test products, prices, customers, and subscriptions only.

  5. Configure the Supabase stripe-webhook function with the resulting test webhook signing secret separately. The MCP credential does not replace the server-side STRIPE_SECRET_KEY or STRIPE_WEBHOOK_SECRET.

Troubleshooting

Symptom

Fix

auth_status() reports no credentials

Run /mcp login stripe again.

Calls fail after a long pause

Run refresh(); log in again if it returns False.

A tool name is unknown

Re-run await stripe.list_tools(); the inventory can change during preview.

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 kernel

CI 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.com and 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).

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server for the Stripe API with 10 tools covering payments, customers, invoices, and subscriptions. Generated with MCPForge. Destructive and financial operations require human approval.
    40
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables natural language interaction with Stripe accounts to query customers, revenue, invoices, subscriptions, disputes, and issue refunds.
    59
    1
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables integration with Stripe APIs through function calling, supporting operations on customers, products, invoices, subscriptions, and more.
    10,572
    MIT

View all related MCP servers

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

View all MCP Connectors

Latest Blog Posts

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