Skip to main content

Stripe Get Endpoint Coverage

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READstripe.stripe-get-endpoint-coverage
  • Contract tier: legacy
  • Risk: read
  • Catalog version: stripe-2026.07.12.2
  • Descriptor hash: 332550f69f9acc4b48f4ef3c9e0259ce9f23b73e7338ec5e4aa3bfa1e24e0131

Use this when you need the endpoint coverage matrix or to find which generated tool maps to a Stripe endpoint. This is read-only and returns a compact structured slice of docs/endpoint-coverage.md.

Request Body

{
"jsonrpc": "2.0",
"id": "stripe-stripe-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "stripe.stripe-get-endpoint-coverage",
"arguments": {
"method": "",
"search": "",
"max_rows": 1,
"profileId": "",
"risk_level": "",
"profileSlug": ""
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"method": {
"anyOf": [
{
"enum": [
"GET",
"POST",
"DELETE",
"PUT",
"PATCH"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional HTTP method filter."
},
"search": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional case-insensitive search across method, path, tool name, summary, and tags."
},
"max_rows": {
"type": "integer",
"default": 50,
"description": "Maximum rows to return. Defaults to 50 and is clamped to 200."
},
"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."
},
"risk_level": {
"anyOf": [
{
"enum": [
"read",
"write",
"destructive"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional risk filter."
},
"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-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "stripe.stripe-get-endpoint-coverage",
"arguments": {
"method": "",
"search": "",
"max_rows": 1,
"profileId": "",
"risk_level": "",
"profileSlug": ""
}
}
}'

Example Responses

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