stripe_payment_records
ActiveTool of Inferventis — Financial Data, News & Web MCP
Retrieves payment and charge records from a Stripe merchant account. Returns a list of payment records filtered by the requested query type. Use stripe_payment_records when an agent needs to review recent charges, refunds, disputes, or subscription payments from a Stripe account. This is a lightweight variant of stripe_payments — it returns a simple records array rather than the full structured Stripe response with customer details, metadata, and pagination cursors. Prefer stripe_payments when the agent needs complete Stripe charge objects including customer IDs, payment method details, metadata fields, and processing status breakdowns. Prefer open_banking_transactions or bank_accounts when the payment data source is a bank account rather than a Stripe merchant account. Requires a Stripe API key to be configured on the server.
Parameters schema
{
"type": "object",
"required": [
"query_type"
],
"properties": {
"limit": {
"type": "number",
"description": "Maximum number of records to return. Defaults to 10. Maximum 50."
},
"query_type": {
"type": "string",
"description": "Type of payment records to retrieve. Accepted values: 'recent_payments' (latest charges), 'refunds' (refund records), 'disputes' (disputed charges), 'subscriptions' (recurring subscription payments)."
}
}
}Parent server
Inferventis — Financial Data, News & Web MCP
https://github.com/Bankee-ai/inferventis-tools
1/7 registries