Skip to main content

Find Tools

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READgoogle.find_tools
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: google-2026.07.12.2
  • Descriptor hash: 5d9035e8f9ceb1afc7cf7dde1509490970520cc729aa10faa6334d12f710619c

Use this local read-only navigation tool to rank Google tools for a task using punctuation-normalized multi-token search and optional category or risk filters. This is a local, read-only navigation operation. It requires a valid MAD MCP Portal grant but does not contact Google or require Google OAuth credentials.

Request Body

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

Arguments Schema

{
"type": "object",
"title": "find_toolsArguments",
"required": [
"query"
],
"properties": {
"risk": {
"enum": [
"",
"read",
"write",
"destructive"
],
"type": "string",
"title": "Risk",
"default": "",
"description": "Optional exact read, write, or destructive manifest risk filter."
},
"limit": {
"type": "integer",
"title": "Limit",
"default": 8,
"description": "Maximum bounded result count; defaults to 8 and cannot exceed 25 for tool search."
},
"query": {
"type": "string",
"title": "Query",
"description": "Provider query string used to filter results."
},
"category": {
"type": "string",
"title": "Category",
"default": "",
"description": "Optional capability category filter."
},
"include_legacy": {
"type": "boolean",
"title": "Include Legacy",
"default": false,
"description": "When true, include legacy broker-reachable tools in discovery; hidden tools remain excluded."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the local or Google provider operation completed successfully."
},
"data": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"type": "null"
}
],
"description": "Bounded local navigation or Google provider result when ok is true."
},
"meta": {
"type": "object",
"description": "Safe timing, pagination, cache, request, and truncation metadata.",
"additionalProperties": true
},
"error": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"description": "Safe structured error when ok is false."
}
},
"description": "Google MCP normalized operation envelope.",
"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": "google-find-tools-example",
"method": "tools/call",
"params": {
"name": "google.find_tools",
"arguments": {
"query": "query_example",
"risk": "",
"limit": 1,
"category": "category_example",
"include_legacy": false
}
}
}'

Example Responses

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