Skip to main content

Get Cloudflare Endpoint Coverage

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READcloudflare.get_endpoint_coverage
  • 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 -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": ""
}
}
}'

Example Responses

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