List Cloudflare MCP Capabilities
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:
b1f4815d480e123990a62035e3b07507da3fa725967a4d375d1de55cd26331b9
Use this to inspect Cloudflare MCP catalog counts, safe workflows, and the provider-owned ToolManifest. Set include_descriptors=true when the Portal or an advanced agent needs every lossless schema and annotation. This is local, read-only, and requires no Cloudflare provider credential.
Request Body
{
"jsonrpc": "2.0",
"id": "cloudflare-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "cloudflare.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}
Arguments Schema
{
"type": "object",
"properties": {
"include_descriptors": {
"type": "boolean",
"default": false,
"description": "Return all lossless tool descriptors when true; omit them from the compact capability summary when false."
}
},
"description": "Cloudflare capability listing options.",
"additionalProperties": false
}
Output Schema
{
"type": "object",
"properties": {
"tools": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "Lossless descriptors when include_descriptors is true."
},
"counts": {
"type": "object",
"description": "Raw, agent-ready, legacy, and hidden descriptor counts.",
"additionalProperties": {
"type": "integer"
}
},
"buildSha": {
"type": "string",
"description": "Source revision used by the running service."
},
"serviceId": {
"type": "string",
"description": "Canonical Portal service ID."
},
"schemaVersion": {
"type": "string",
"description": "ToolManifest wire schema version."
},
"catalogVersion": {
"type": "string",
"description": "Immutable provider catalog version."
},
"descriptorHash": {
"type": "string",
"description": "SHA-256 over the canonical descriptor array."
},
"commonWorkflows": {
"type": "array",
"items": {
"type": "string"
},
"description": "Recommended safe Cloudflare navigation flow."
}
},
"description": "Cloudflare capabilities summary or lossless ToolManifest.",
"additionalProperties": true
}
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-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "cloudflare.list_capabilities",
"arguments": {
"include_descriptors": 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-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "cloudflare.list_capabilities",
"arguments": {
"include_descriptors": 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-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "cloudflare.list_capabilities",
"arguments": {
"include_descriptors": 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.list_capabilities 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."
}