Skip to main content

Find Tools

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

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

Find Stripe tools with punctuation-normalized multi-token ranked local search plus category, risk, and legacy filters; this does not contact Stripe.

Request Body

{
"jsonrpc": "2.0",
"id": "stripe-find-tools-example",
"method": "tools/call",
"params": {
"name": "stripe.find_tools",
"arguments": {
"query": "query_example",
"risk": "",
"limit": 1,
"category": "",
"profileId": "",
"profileSlug": "",
"include_legacy": false
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"query"
],
"properties": {
"risk": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional read, write, or destructive risk filter."
},
"limit": {
"type": "integer",
"default": 8,
"maximum": 25,
"minimum": 1,
"description": "Maximum matches to return."
},
"query": {
"type": "string",
"description": "Multi-token task description for deterministic local Stripe tool search."
},
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional exact lowercase manifest category filter."
},
"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_legacy": {
"type": "boolean",
"default": false,
"description": "When true, also search legacy descriptors; hidden tools remain excluded."
}
},
"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-find-tools-example",
"method": "tools/call",
"params": {
"name": "stripe.find_tools",
"arguments": {
"query": "query_example",
"risk": "",
"limit": 1,
"category": "",
"profileId": "",
"profileSlug": "",
"include_legacy": false
}
}
}'

Example Responses

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