Skip to main content

Get Wave Endpoint Coverage

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READwave.get_endpoint_coverage
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: 2026-07-12.1
  • Descriptor hash: 0c7870b8ba89be62cffd8789fe884691ca757dff406a2dfd36739ed67c714a05

Use this grant-only local reference to inspect filtered, paginated Matrix and Synapse endpoint coverage, implementation status, risk, and documentation without contacting the provider.

Request Body

{
"jsonrpc": "2.0",
"id": "wave-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "wave.get_endpoint_coverage",
"arguments": {
"section": "navigation",
"cursor": 1,
"limit": 1,
"status": "status_example"
}
}
}

Arguments Schema

{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"section",
"cursor",
"limit"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 250,
"description": "Maximum coverage entries to return; maximum 250.",
"exclusiveMinimum": 0
},
"cursor": {
"type": "integer",
"default": 0,
"maximum": 9007199254740991,
"minimum": 0,
"description": "Zero-based result offset for deterministic pagination."
},
"status": {
"type": "string",
"description": "Optional case-insensitive substring filter for implementation status."
},
"section": {
"enum": [
"navigation",
"messaging",
"admin",
"portal",
"e2ee",
"identity",
"synapse_admin",
"all"
],
"type": "string",
"default": "all",
"description": "Coverage section to return, or all for the complete provider mapping."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the Wave MCP operation completed successfully."
},
"data": {
"anyOf": [
{},
{
"type": "null"
}
],
"description": "Tool-specific Wave, Matrix, Synapse, or local navigation result."
},
"meta": {
"type": "object",
"description": "Safe execution and actor metadata without credential values.",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
},
"error": {
"anyOf": [
{
"type": "object",
"required": [
"code",
"message"
],
"properties": {
"code": {
"type": "string",
"description": "Stable machine-readable error classification."
},
"details": {
"description": "Optional safe error context without credentials or request bodies."
},
"message": {
"type": "string",
"description": "Safe actionable error message."
}
},
"additionalProperties": false
},
{
"type": "null"
}
],
"description": "Safe error details when ok is false."
}
},
"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": "wave-get-endpoint-coverage-example",
"method": "tools/call",
"params": {
"name": "wave.get_endpoint_coverage",
"arguments": {
"section": "navigation",
"cursor": 1,
"limit": 1,
"status": "status_example"
}
}
}'

Example Responses

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