Skip to main content

Stripe Get Profile Routing

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READstripe.stripe-get-profile-routing
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: stripe-2026.07.12.2
  • Descriptor hash: 5896862fa986884cd6e4c9f2af2e84f18729c28d536d06dce2dbd4d07d85b516

Use this when Stripe returns stripe_profile_selection_required, when multiple Stripe profiles are connected, or when portal.select_service_profile is unavailable. This is read-only and does not call Stripe.

Request Body

{
"jsonrpc": "2.0",
"id": "stripe-stripe-get-profile-routing-example",
"method": "tools/call",
"params": {
"name": "stripe.stripe-get-profile-routing",
"arguments": {
"profileId": "",
"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."
},
"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-profile-routing-example",
"method": "tools/call",
"params": {
"name": "stripe.stripe-get-profile-routing",
"arguments": {
"profileId": "",
"profileSlug": ""
}
}
}'

Example Responses

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