Skip to main content

Check Apollo MCP runtime health

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READapollo.mcp_health_check
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: 1.0.2
  • Descriptor hash: c73cd31d5d7c5b8a969659358617352dac9fdd80824f199235cfe5370b277354

Use this local read-only check to inspect Apollo MCP runtime mode and catalog identity without contacting Apollo or exposing credentials. It confirms the MCP process can execute an authenticated tool call.

Request Body

{
"jsonrpc": "2.0",
"id": "apollo-mcp-health-check-example",
"method": "tools/call",
"params": {
"name": "apollo.mcp_health_check",
"arguments": {}
}
}

Arguments Schema

{
"type": "object",
"properties": {},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the requested operation completed successfully."
},
"data": {
"anyOf": [
{
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
}
],
"description": "Normalized provider or navigation result."
},
{
"type": "null"
}
],
"default": null,
"description": "Normalized provider or navigation result."
},
"meta": {
"type": "object",
"description": "Safe request, pagination, and truncation metadata.",
"additionalProperties": true
},
"error": {
"anyOf": [
{
"type": "object",
"description": "Safe error details when ok is false.",
"additionalProperties": true
},
{
"type": "null"
}
],
"default": null,
"description": "Safe error details when ok is false."
}
},
"description": "Apollo MCP normalized response envelope.",
"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": "apollo-mcp-health-check-example",
"method": "tools/call",
"params": {
"name": "apollo.mcp_health_check",
"arguments": {}
}
}'

Example Responses

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