@forgem/stripe
v0.1.0
Published
Stripe API — payments, customers, subscriptions, invoices, refunds, balance
Downloads
28
Readme
@forgem/stripe
Stripe API — payments, customers, subscriptions, invoices, refunds, balance
Install
Add to your Claude/Cursor settings:
{
"mcpServers": {
"stripe": {
"command": "npx",
"args": ["-y", "@forgem/stripe"],
"env": {
"STRIPE_SECRET_KEY": "your-key"
}
}
}
}Tools
list-customers
List all customers → GET /customers
limit(number) Max results (1-100)
get-customer
Retrieve a customer by ID → GET /customers/{id}
id(string) Customer ID (cus_...)
list-charges
List recent charges → GET /charges
limit(number) Max results
get-balance
Retrieve current account balance → GET /balance
list-subscriptions
List all subscriptions → GET /subscriptions
limit(number) Max resultsstatus(string) Filter by status (active,canceled,past_due)
list-invoices
List invoices → GET /invoices
limit(number) Max results
create-customer
Create a new customer → POST /customers
email(string) Customer emailname(string) Customer name
Generated by Forgem — MCP Platform
