Skip to main content

Check Configuration

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READstripe.check_configuration
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: stripe-2026.07.12.2
  • Descriptor hash: d94d9e835b13f49023855176a67ec2fe8754c7f16612d30c9e1c0e9b5c564680

Verify Stripe Portal-gate, request-scoped BYOK, profile-routing, build, and catalog readiness without contacting Stripe or returning credential values.

Request Body

{
"jsonrpc": "2.0",
"id": "stripe-check-configuration-example",
"method": "tools/call",
"params": {
"name": "stripe.check_configuration",
"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",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the local navigation operation completed successfully."
},
"data": {
"description": "Bounded local catalog, configuration, coverage, or search data."
},
"meta": {
"type": "object",
"description": "Safe result counts and filter metadata.",
"additionalProperties": true
},
"error": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"description": "Safe structured error when ok is false."
}
},
"description": "Normalized local Stripe navigation result.",
"additionalProperties": false
}

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-check-configuration-example",
"method": "tools/call",
"params": {
"name": "stripe.check_configuration",
"arguments": {
"profileId": "",
"profileSlug": ""
}
}
}'

Example Responses

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