Skip to main content

Stripe List Capabilities

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READstripe.stripe-list-capabilities
  • Contract tier: legacy
  • Risk: read
  • Catalog version: stripe-2026.07.12.2
  • Descriptor hash: f9cc5451a47432fa9f7ab7987bc3d7edf7008075cec5d6c1210c8dbabddfbc25

Use this when you need a compact map of Stripe MCP tool groups and when to use them. This is read-only and does not call Stripe.

Request Body

{
"jsonrpc": "2.0",
"id": "stripe-stripe-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "stripe.stripe-list-capabilities",
"arguments": {
"profileId": "",
"max_groups": 1,
"profileSlug": ""
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"profileId": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "MAD MCP Portal routing hint only. When multiple Stripe profiles are connected and portal.select_service_profile is unavailable, pass the chosen profile id here; the portal consumes it before forwarding. Direct Stripe MCP runtime ignores this value."
},
"max_groups": {
"type": "integer",
"default": 40,
"description": "Maximum groups to return. Defaults to 40 and is clamped to 100."
},
"profileSlug": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "MAD MCP Portal routing hint only. When multiple Stripe profiles are connected and portal.select_service_profile is unavailable, pass the chosen profile slug here; the portal consumes it before forwarding. Direct Stripe MCP runtime ignores this value."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the local or provider operation completed successfully."
},
"data": {
"description": "Compact redacted provider data when available."
},
"error": {
"description": "Safe error details when ok is false."
},
"recovery": {
"type": "string",
"description": "Safe next step for correcting configuration or input."
},
"truncated": {
"type": "boolean",
"description": "Whether output was bounded by the configured response limit."
},
"request_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Safe Stripe request identifier for support correlation."
},
"status_code": {
"type": "integer",
"description": "Stripe HTTP status code when a provider request was made."
}
},
"description": "Bounded, secret-safe Stripe MCP operation result.",
"additionalProperties": true
}

Code Examples

curl -X POST 'https://portal.madpanda3d.com/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "stripe-stripe-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "stripe.stripe-list-capabilities",
"arguments": {
"profileId": "",
"max_groups": 1,
"profileSlug": ""
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool stripe.stripe-list-capabilities executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}