stripe_list_charges
ActiveTool of Stripe_connect
declared in 0.1.0
List Stripe payment charges for your account, optionally filtered by customer ID. Returns charge ID, amount, currency, status, and timestamp. Supports limit (1-100) pagination.
Parameters schema
{
"type": "object",
"examples": [
{
"limit": 25,
"_apiKey": "your-stripe_connect-api-key"
},
{
"limit": 10,
"_apiKey": "your-stripe_connect-api-key",
"customer": "cus_ABC123"
}
],
"required": [
"_apiKey"
],
"properties": {
"limit": {
"type": "number",
"description": "Max results (1-100, default 10)"
},
"_apiKey": {
"type": "string",
"description": "Stripe secret or restricted API key (sk_...)"
},
"customer": {
"type": "string",
"description": "Filter by customer ID"
}
}
}Parent server
Stripe_connect
https://github.com/pipeworx-io/mcp-stripe_connect
1/7 registries