Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions tools/modelcontextprotocol/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,29 @@
}
},
"tools": [
{"name": "search_documentation"},
{"name": "get_stripe_account_in"},
{"name": "create_customer"},
{"name": "list_customers"},
{"name": "create_product"},
{"name": "list_products"},
{"name": "create_price"},
{"name": "list_prices"},
{"name": "create_payment_link"},
{"name": "create_invoice"},
{"name": "list_invoices"},
{"name": "create_invoice_item"},
{"name": "finalize_invoice"},
{"name": "retrieve_balance"},
{"name": "create_refund"},
{"name": "list_payment_intents"},
{"name": "list_subscriptions"},
{"name": "cancel_subscription"},
{"name": "update_subscription"},
{"name": "list_coupons"},
{"name": "create_coupon"},
{"name": "update_dispute"},
{"name": "list_disputes"}
{"name": "search_documentation", "description": "Search Stripe's documentation and knowledge base to answer questions about Stripe products, APIs, and integration guidance."},
{"name": "get_stripe_account_in", "description": "Retrieve information about the connected Stripe account, such as its business profile and settings."},
{"name": "create_customer", "description": "Create a new Stripe Customer record."},
{"name": "list_customers", "description": "List existing Stripe Customers, optionally filtered by email."},
{"name": "create_product", "description": "Create a new Stripe Product to sell or bill for."},
{"name": "list_products", "description": "List existing Stripe Products."},
{"name": "create_price", "description": "Create a Price (amount, currency, billing interval) for an existing Product."},
{"name": "list_prices", "description": "List existing Prices."},
{"name": "create_payment_link", "description": "Create a shareable Payment Link for a Price. This generates a real, live payment page — confirm the price and terms with the user before creating one."},
{"name": "create_invoice", "description": "Create a draft Invoice for a Customer. This does not charge the customer until the invoice is finalized and sent — use finalize_invoice for that step."},
{"name": "list_invoices", "description": "List existing Invoices."},
{"name": "create_invoice_item", "description": "Add a line item (amount, description) to a draft Invoice. This does not charge the customer until the invoice is finalized."},
{"name": "finalize_invoice", "description": "Finalize a draft Invoice, which can immediately attempt to charge the customer if the invoice is set to charge automatically. This is customer-visible and effectively irreversible — confirm the invoice's contents with the user first."},
{"name": "retrieve_balance", "description": "Retrieve the current available and pending balance on the Stripe account."},
{"name": "create_refund", "description": "Refund a Charge or PaymentIntent, in full or in part. This moves real money back to the customer and cannot be undone — state the exact amount and reason back to the user and get their explicit approval before calling this."},
{"name": "list_payment_intents", "description": "List PaymentIntents (payment attempts), including their status."},
{"name": "list_subscriptions", "description": "List existing Subscriptions."},
{"name": "cancel_subscription", "description": "Cancel an existing Subscription. This stops future billing, is customer-visible, and may issue an immediate refund or credit depending on proration settings — confirm the effect with the user before canceling."},
{"name": "update_subscription", "description": "Update an existing Subscription, such as changing its price or quantity. This can change what the customer is billed — confirm with the user first."},
{"name": "list_coupons", "description": "List existing Coupons."},
{"name": "create_coupon", "description": "Create a new Coupon that can be applied to future invoices or subscriptions."},
{"name": "update_dispute", "description": "Submit or update evidence on a payment Dispute. This is submitted to the card network and is effectively final — confirm the evidence with the user before updating."},
{"name": "list_disputes", "description": "List existing payment Disputes."}
],
"license": "MIT",
"repository": {
Expand Down
Loading