Get Cloudflare Endpoint Coverage
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:
4a4e108ec748ef15b2e0860628c317528bc1f50098bf673451f7081f6d3524e3
Use this to search the checked-in official Cloudflare OpenAPI inventory by feature, method, path text, or risk before considering an advanced API request. It returns a paginated local coverage page, performs no provider request, and does not imply that the mixed-risk legacy dispatcher is safe for default use.
Request Body
{
"jsonrpc": "2.0",
"id": "cloudflare-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "cloudflare.get_endpoint_coverage",
"arguments": {
"limit": 1,
"method": "",
"offset": 1,
"feature_area": "",
"path_contains": "",
"classification": ""
}
}
}
Arguments Schema
{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 200,
"minimum": 1,
"description": "Maximum matching operations to return, from 1 through 200."
},
"method": {
"anyOf": [
{
"enum": [
"GET",
"POST",
"PUT",
"PATCH",
"DELETE"
],
"type": "string",
"description": "HTTP method filter for documented operations."
},
{
"type": "null"
}
],
"default": null,
"description": "HTTP method filter for documented operations."
},
"offset": {
"type": "integer",
"default": 0,
"minimum": 0,
"description": "Zero-based offset into the filtered operation inventory."
},
"feature_area": {
"anyOf": [
{
"type": "string",
"description": "Case-insensitive Cloudflare feature or OpenAPI tag filter."
},
{
"type": "null"
}
],
"default": null,
"description": "Case-insensitive Cloudflare feature or OpenAPI tag filter."
},
"path_contains": {
"anyOf": [
{
"type": "string",
"description": "Case-insensitive substring required in the endpoint path."
},
{
"type": "null"
}
],
"default": null,
"description": "Case-insensitive substring required in the endpoint path."
},
"classification": {
"anyOf": [
{
"enum": [
"read",
"write",
"destructive"
],
"type": "string",
"description": "Mutability or risk classification filter."
},
{
"type": "null"
}
],
"default": null,
"description": "Mutability or risk classification filter."
}
},
"description": "Filters and pagination for the official endpoint coverage inventory.",
"additionalProperties": false
}
Output Schema
{
"type": "object",
"required": [
"source",
"operation_count",
"filtered_count",
"limit",
"offset",
"operations"
],
"properties": {
"limit": {
"type": "integer",
"description": "Applied page size."
},
"offset": {
"type": "integer",
"description": "Applied result offset."
},
"source": {
"type": "object",
"description": "Official Cloudflare OpenAPI source metadata.",
"additionalProperties": true
},
"operations": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "Matching method/path/risk operation records."
},
"filtered_count": {
"type": "integer",
"description": "Operations matching the supplied filters."
},
"operation_count": {
"type": "integer",
"description": "Total operations in the checked-in official schema snapshot."
}
},
"description": "Filtered Cloudflare endpoint coverage page.",
"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-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "cloudflare.get_endpoint_coverage",
"arguments": {
"limit": 1,
"method": "",
"offset": 1,
"feature_area": "",
"path_contains": "",
"classification": ""
}
}
}'
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-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "cloudflare.get_endpoint_coverage",
"arguments": {
"limit": 1,
"method": "",
"offset": 1,
"feature_area": "",
"path_contains": "",
"classification": ""
}
}
}),
});
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-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "cloudflare.get_endpoint_coverage",
"arguments": {
"limit": 1,
"method": "",
"offset": 1,
"feature_area": "",
"path_contains": "",
"classification": ""
}
}
}
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.get_endpoint_coverage 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."
}