Find Cloudflare Tools
Immutable Catalog Entry
This descriptor comes from the active versioned Portal catalog.
- Contract tier:
agent_ready - Risk:
read - Catalog version:
2026.07.12.1 - Descriptor hash:
485c26e13fe6b2df4429004aeb380dc0651f87f413667f96714431a447aead12
Use this for deterministic punctuation-normalized, multi-token search across Cloudflare MCP names, aliases, titles, descriptions, and categories. Default results contain only agent-ready local navigation tools; set include_legacy=true only for advanced discovery of the mixed-risk API dispatcher.
Request Body
{
"jsonrpc": "2.0",
"id": "cloudflare-find-tools-example",
"method": "tools/call",
"params": {
"name": "cloudflare.find_tools",
"arguments": {
"query": "query_example",
"limit": 1,
"categories": "",
"include_legacy": false
}
}
}
Arguments Schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"limit": {
"type": "integer",
"default": 8,
"maximum": 25,
"minimum": 1,
"description": "Maximum ranked matches to return, from 1 through 25."
},
"query": {
"type": "string",
"minLength": 1,
"description": "Natural-language, alias, category, or tool-name search text."
},
"categories": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
},
"description": "Optional exact category filters.",
"uniqueItems": true
},
{
"type": "null"
}
],
"default": null,
"description": "Optional exact category filters."
},
"include_legacy": {
"type": "boolean",
"default": false,
"description": "Include advanced legacy tools when true."
}
},
"description": "Cloudflare provider-catalog search options.",
"additionalProperties": false
}
Output Schema
{
"type": "object",
"required": [
"query",
"include_legacy",
"count",
"results"
],
"properties": {
"count": {
"type": "integer",
"description": "Returned result count."
},
"query": {
"type": "string",
"description": "Normalized search request."
},
"results": {
"type": "array",
"items": {
"type": "object",
"required": [
"toolName",
"canonicalName",
"title",
"description",
"category",
"tier",
"risk",
"score"
],
"properties": {
"risk": {
"type": "string"
},
"tier": {
"type": "string"
},
"score": {
"type": "integer"
},
"title": {
"type": "string"
},
"category": {
"type": "string"
},
"toolName": {
"type": "string"
},
"description": {
"type": "string"
},
"canonicalName": {
"type": "string"
}
},
"additionalProperties": false
},
"description": "Deterministically ranked matching tool summaries."
},
"include_legacy": {
"type": "boolean",
"description": "Whether legacy tools were eligible for matching."
}
},
"description": "Ranked Cloudflare MCP tool search results.",
"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": "cloudflare-find-tools-example",
"method": "tools/call",
"params": {
"name": "cloudflare.find_tools",
"arguments": {
"query": "query_example",
"limit": 1,
"categories": "",
"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": "cloudflare-find-tools-example",
"method": "tools/call",
"params": {
"name": "cloudflare.find_tools",
"arguments": {
"query": "query_example",
"limit": 1,
"categories": "",
"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": "cloudflare-find-tools-example",
"method": "tools/call",
"params": {
"name": "cloudflare.find_tools",
"arguments": {
"query": "query_example",
"limit": 1,
"categories": "",
"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 cloudflare.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."
}