Skip to main content

Stripe Get Tool Usage

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READstripe.stripe-get-tool-usage
  • Contract tier: legacy
  • Risk: read
  • Catalog version: stripe-2026.07.12.2
  • Descriptor hash: 8e97201f1bd362b928daa5360fbbf2e6c6bb3e784fbc04cb9a8e77fd7ba3e127

Use this when you need agent-facing guidance for cheapest safe Stripe workflows, response modes, pagination, or destructive-tool precautions. This is read-only and does not call Stripe.

Request Body

{
"jsonrpc": "2.0",
"id": "stripe-stripe-get-tool-usage-example",
"method": "tools/call",
"params": {
"name": "stripe.stripe-get-tool-usage",
"arguments": {
"profileId": "",
"tool_name": "",
"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."
},
"tool_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional exact tool name to explain, for example stripe-list-v1-customers."
},
"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-get-tool-usage-example",
"method": "tools/call",
"params": {
"name": "stripe.stripe-get-tool-usage",
"arguments": {
"profileId": "",
"tool_name": "",
"profileSlug": ""
}
}
}'

Example Responses

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