Skip to main content

List Capabilities

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

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

Return the provider-owned Stripe ToolManifest. Set include_descriptors=true for every complete schema, annotation, alias, risk gate, catalog identity, and descriptor hash; this local tool never contacts Stripe.

Request Body

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

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."
},
"include_descriptors": {
"type": "boolean",
"default": false,
"description": "When true, return all complete ToolManifest descriptors; false returns counts only."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"$defs": {
"toolDescriptor": {
"type": "object",
"required": [
"serviceId",
"nativeToolName",
"canonicalName",
"aliases",
"title",
"description",
"category",
"deprecation",
"inputSchema",
"outputSchema",
"annotations",
"confirmation",
"documentationUrl",
"navigationRole",
"catalogVersion",
"tier",
"descriptorHash"
],
"properties": {
"tier": {
"enum": [
"agent_ready",
"legacy",
"hidden"
]
},
"title": {
"type": "string",
"minLength": 1
},
"aliases": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"uniqueItems": true
},
"category": {
"type": "string",
"minLength": 1
},
"serviceId": {
"const": "stripe"
},
"annotations": {
"type": "object",
"required": [
"readOnlyHint",
"destructiveHint",
"openWorldHint",
"idempotentHint"
],
"properties": {
"readOnlyHint": {
"type": "boolean"
},
"openWorldHint": {
"type": "boolean"
},
"idempotentHint": {
"type": "boolean"
},
"destructiveHint": {
"type": "boolean"
}
},
"additionalProperties": false
},
"deprecation": {
"type": "object",
"required": [
"deprecated",
"since",
"replacement",
"sunsetAt",
"message"
],
"properties": {
"since": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"sunsetAt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"deprecated": {
"type": "boolean"
},
"replacement": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"description": {
"type": "string",
"minLength": 1
},
"inputSchema": {
"type": "object",
"additionalProperties": true
},
"confirmation": {
"type": "object",
"required": [
"required",
"parameter",
"exactPhrase",
"when"
],
"properties": {
"when": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"required": {
"type": "boolean"
},
"parameter": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"exactPhrase": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"outputSchema": {
"type": "object",
"additionalProperties": true
},
"canonicalName": {
"type": "string",
"minLength": 1
},
"catalogVersion": {
"type": "string",
"minLength": 1
},
"descriptorHash": {
"type": "string",
"pattern": "^[a-f0-9]{64}$"
},
"nativeToolName": {
"type": "string",
"minLength": 1
},
"navigationRole": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"documentationUrl": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": false
}
},
"required": [
"schemaVersion",
"serviceId",
"catalogVersion",
"buildSha",
"descriptorHash",
"counts",
"tools"
],
"properties": {
"tools": {
"type": "array",
"items": {
"$ref": "#/$defs/toolDescriptor"
},
"description": "Complete descriptors when requested; otherwise an empty array."
},
"counts": {
"type": "object",
"description": "Raw, agent-ready, legacy, and hidden descriptor counts.",
"additionalProperties": {
"type": "integer"
}
},
"buildSha": {
"type": "string",
"description": "Source revision for the running image."
},
"serviceId": {
"const": "stripe",
"description": "Canonical Portal service identifier."
},
"schemaVersion": {
"type": "string",
"description": "ToolManifest wire-contract version."
},
"catalogVersion": {
"type": "string",
"description": "Immutable Stripe catalog version."
},
"descriptorHash": {
"type": "string",
"description": "SHA-256 of the ordered descriptors."
}
},
"description": "Complete provider-owned Stripe ToolManifest catalog.",
"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-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "stripe.list_capabilities",
"arguments": {
"profileId": "",
"profileSlug": "",
"include_descriptors": false
}
}
}'

Example Responses

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