Skip to main content

List Cloudflare MCP Capabilities

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READcloudflare.list_capabilities
  • 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 -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
}
}
}'

Example Responses

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