Get Stripe account summary is a WordPress ability from WooCommerce Stripe Gateway — usable via Easy MCP AI, which connects Claude, ChatGPT, and any AI assistant to your site.
Install Free Plugin →Get Stripe account summary
Read-onlySummarize the current state of the store's connected Stripe account in one zero-argument read.
Requires the WooCommerce Stripe Gateway plugin active on WordPress 6.9+ with WooCommerce 10.9 or later, since every ability registers through WooCommerce Core's AbilitiesLoader. Abilities are also gated behind the 'wc_stripe_abilities_enabled' filter, which defaults to off, and the current user needs the 'manage_woocommerce' capability.
What it does
This ability returns the current state of the merchant's connected Stripe account: the Stripe account ID, status, country, supported currencies, statement descriptor, whether the account is in test or live mode, and any pending or overdue requirements. It takes no input and delegates to the plugin's own account REST controller (WC_REST_Stripe_Account_Controller) rather than exposing the raw Stripe account object, so the response is a safe summary suitable for agent tools. It's the quickest way for an AI assistant to check whether a store's Stripe connection is healthy before digging into charges or payouts.
See it in action
You ask your AI assistant
"What's the current status of our connected Stripe account, and are there any pending or overdue requirements?"
Returns
An object summarizing the connected Stripe account, including the account ID (or null if none connected), status, country, supported currencies, statement descriptor, test/live mode, and pending or overdue requirements.
Permission
The current user must have the 'manage_woocommerce' capability, checked via WC_Stripe_Abilities_Registrar::can_manage_woocommerce().
More WooCommerce Stripe Gateway abilities
Get Stripe balance
Check the merchant's current Stripe balance across available, pending, and reserved amounts.
Get Stripe balance transactions
List Stripe balance transactions — charges, refunds, payouts, and adjustments — that moved money in or out of the balance.
Get Stripe charge by ID
Look up a single Stripe charge by its ID, with optional related objects inflated inline.
Get Stripe charges
List recent Stripe charges, optionally filtered by customer, payment intent, or date range.
Get Stripe dispute by ID
Look up a single Stripe dispute by ID, including its evidence and linked charge.
Get Stripe disputes
List Stripe disputes, optionally filtered by charge, payment intent, or date range.