Stripe Integration
The Stripe node lets your agents manage customers, invoices, subscriptions, and payment flows.
Connection Setup
Section titled “Connection Setup”Requires a Stripe Secret Key (restricted key recommended).
- Go to Stripe Dashboard → API Keys
- Click Create restricted key — grant only the permissions your agent needs
- Paste the key when connecting Stripe in Spawnbase
Available Tools
Section titled “Available Tools”| Tool | Description |
|---|---|
create_customer | Create a new customer record |
list_customers | List and search customers |
create_invoice | Generate an invoice |
create_invoice_item | Add line items to an invoice |
finalize_invoice | Finalize and send an invoice |
list_invoices | List invoice records |
create_payment_link | Generate a shareable payment URL |
list_payment_intents | List payment intent records |
create_product | Define a product |
list_products | List products |
create_price | Create a price for a product |
list_prices | List price configurations |
list_subscriptions | List active subscriptions |
update_subscription | Modify a subscription |
cancel_subscription | Cancel a subscription |
create_refund | Process a refund |
create_coupon | Create a promotional coupon |
list_coupons | List coupons |
list_disputes | List payment disputes |
update_dispute | Update a dispute |
retrieve_balance | Get current account balance |
search_stripe_resources | Search across Stripe objects |
fetch_stripe_resources | Retrieve a specific Stripe object |
MCP Server
Section titled “MCP Server”| Server URL | https://mcp.stripe.com |
| Transport | Streamable HTTP |
| Docs | docs.stripe.com/mcp |
- Test mode first — use
sk_test_keys while building. Switch tosk_live_when deploying to production. - Sandbox vs Live — Stripe manages access separately. Your test key cannot see live data and vice versa.
- Stripe discovers tools automatically when you connect. The list above reflects the current MCP server capabilities.