Query your Stripe account from your AI. Look up customers, view payment intents, manage subscriptions, issue refunds, and check balance.
Credentials
| Name | Label | Required |
|---|---|---|
STRIPE_SECRET_KEY | Stripe Secret Key | required |
Setup
terminal
# Use your Stripe test key during setup, switch to live key for production.
conductor plugins setup stripeTools
| Tool | Description | Inputs | Approval |
|---|---|---|---|
stripe_customers | List or search customers | email?, limit? | — |
stripe_customer | Get a customer by ID | id | — |
stripe_payments | List recent payment intents | limit?, customer? | — |
stripe_payment | Get a single payment intent | id | — |
stripe_subscriptions | List subscriptions | customer?, status? | — |
stripe_subscription | Get subscription details | id | — |
stripe_refund | Issue a refund | charge, amount?, reason? | required |
stripe_balance | Get account balance | — | — |
stripe_invoice | Get an invoice by ID | id | — |
Tools marked required will prompt the user for approval before execution. These are typically write, delete, or send operations.
Example Prompts
“Look up the customer with email sarah@example.com”
stripe_customers“Issue a full refund for charge ch_123”
stripe_refund“What's the current account balance?”
stripe_balance