# Stripe (verified)

Search Stripe documentation for answers, then manage customers, products, prices, invoices, payment links, subscriptions, and refunds. Retrieve account details, balances, and payment activity to spee…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add stripe

# Browse available tools
npx -y @smithery/cli@latest tool list stripe

# Get full schema for a tool
npx -y @smithery/cli@latest tool get stripe search_stripe_documentation

# Call a tool
npx -y @smithery/cli@latest tool call stripe search_stripe_documentation '{}'
```

## Direct MCP Connection

Endpoint: `https://stripe.run.tools`

## Tools (25)

- `search_stripe_documentation` — Search the Stripe documentation for the given question and language.
- `get_stripe_account_info` — This will get the account info for the logged in Stripe account.
- `create_customer` — This tool will create a customer in Stripe.
- `list_customers` — This tool will fetch a list of Customers from Stripe.
- `create_product` — This tool will create a product in Stripe.
- `list_products` — This tool will fetch a list of Products from Stripe.
- `create_price` — This tool will create a price in Stripe. If a product has not already been specified, a product should be created first.
- `list_prices` — This tool will fetch a list of Prices from Stripe.
- `create_payment_link` — This tool will create a payment link in Stripe.
- `create_invoice` — This tool will create an invoice in Stripe.
- `list_invoices` — This tool will fetch a list of Invoices from Stripe.
- `create_invoice_item` — This tool will create an invoice item in Stripe.
- `finalize_invoice` — This tool will finalize an invoice in Stripe.
- `retrieve_balance` — This tool will retrieve the balance from Stripe. It takes no input.
- `create_refund` — This tool will refund a payment intent in Stripe.
- `list_payment_intents` — This tool will list payment intents in Stripe.
- `list_subscriptions` — This tool will list all subscriptions in Stripe.
- `cancel_subscription` — This tool will cancel a subscription in Stripe.
- `update_subscription` — This tool will update an existing subscription in Stripe. If changing an existing subscription item, the existing subsc…
- `list_coupons` — This tool will fetch a list of Coupons from Stripe.
- `create_coupon` — This tool will create a coupon in Stripe.
- `update_dispute` — When you receive a dispute, contacting your customer is always the best first step. If that doesn't work, you can submi…
- `list_disputes` — This tool will fetch a list of disputes in Stripe.
- `search_stripe_resources` — This tool can be used to search for specific Stripe resources using a custom Stripe query syntax.
- `fetch_stripe_resources` — Retrieve Stripe object details by ID.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get stripe <tool-name>
```

## Prompts (1)

- `stripe-best-practices` — Best practices for building a Stripe integrations
