Find Tools
Immutable Catalog Entry
This descriptor comes from the active versioned Portal catalog.
- 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
- Node.js
- Python
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
}
}
}'
const response = await fetch('https://portal.madpanda3d.com/api/mcp', {
method: 'POST',
headers: {
Authorization: 'Bearer mad_live_***',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"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
}
}
}),
});
const data = await response.json();
console.log(data);
import requests
url = 'https://portal.madpanda3d.com/api/mcp'
headers = {
'Authorization': 'Bearer mad_live_***',
'Content-Type': 'application/json',
}
payload = {
"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
}
}
}
response = requests.post(url, headers=headers, json=payload, timeout=60)
print(response.json())
Example Responses
- 200 Success
- 502 Upstream Error
{
"ok": true,
"message": "Tool google.find_tools executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}
{
"ok": false,
"classification": "upstream_http_error",
"message": "Upstream MCP returned a non-success status."
}