List Apollo capabilities and descriptors
Immutable Catalog Entry
This descriptor comes from the active versioned Portal catalog.
- Contract tier:
agent_ready - Risk:
read - Catalog version:
1.0.2 - Descriptor hash:
85ca5826e7c6a16afe5115e7e3971228cd1ac9799809b26b4dfd57ec64ad4f03
Use this local read-only navigation tool to retrieve the deterministic, lossless Apollo ToolManifest. Set include_descriptors=true for every ordered descriptor, complete schema, risk annotation, catalog identity, build SHA, and descriptor hash; the compact default returns identity and counts only. It never contacts Apollo.
Request Body
{
"jsonrpc": "2.0",
"id": "apollo-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "apollo.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}
Arguments Schema
{
"type": "object",
"properties": {
"include_descriptors": {
"type": "boolean",
"default": false,
"description": "Return all lossless ordered descriptors; set true for Portal ingestion."
}
},
"additionalProperties": false
}
Output Schema
{
"type": "object",
"$defs": {
"toolDescriptor": {
"type": "object",
"required": [
"serviceId",
"nativeToolName",
"canonicalName",
"aliases",
"title",
"description",
"category",
"deprecation",
"inputSchema",
"outputSchema",
"annotations",
"confirmation",
"documentationUrl",
"navigationRole",
"catalogVersion",
"tier",
"descriptorHash"
],
"properties": {
"tier": {
"enum": [
"agent_ready",
"legacy",
"hidden"
]
},
"title": {
"type": "string",
"minLength": 1
},
"aliases": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"uniqueItems": true
},
"category": {
"type": "string",
"minLength": 1
},
"serviceId": {
"const": "apollo"
},
"annotations": {
"type": "object",
"required": [
"readOnlyHint",
"destructiveHint",
"openWorldHint",
"idempotentHint"
],
"properties": {
"readOnlyHint": {
"type": "boolean"
},
"openWorldHint": {
"type": "boolean"
},
"idempotentHint": {
"type": "boolean"
},
"destructiveHint": {
"type": "boolean"
}
},
"additionalProperties": false
},
"deprecation": {
"type": "object",
"required": [
"deprecated",
"since",
"replacement",
"sunsetAt",
"message"
],
"properties": {
"since": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"sunsetAt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"deprecated": {
"type": "boolean"
},
"replacement": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"description": {
"type": "string",
"minLength": 1
},
"inputSchema": {
"type": "object",
"additionalProperties": true
},
"confirmation": {
"type": "object",
"required": [
"required",
"parameter",
"exactPhrase",
"when"
],
"properties": {
"when": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"required": {
"type": "boolean"
},
"parameter": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"exactPhrase": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"outputSchema": {
"type": "object",
"additionalProperties": true
},
"canonicalName": {
"type": "string",
"minLength": 1
},
"catalogVersion": {
"type": "string",
"minLength": 1
},
"descriptorHash": {
"type": "string",
"pattern": "^[a-f0-9]{64}$"
},
"nativeToolName": {
"type": "string",
"minLength": 1
},
"navigationRole": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"documentationUrl": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": false
}
},
"required": [
"schemaVersion",
"serviceId",
"catalogVersion",
"buildSha",
"descriptorHash",
"counts",
"tools"
],
"properties": {
"tools": {
"type": "array",
"items": {
"$ref": "#/$defs/toolDescriptor"
}
},
"counts": {
"type": "object",
"required": [
"raw",
"agentReady",
"legacy",
"hidden"
],
"properties": {
"raw": {
"type": "integer",
"minimum": 0
},
"hidden": {
"type": "integer",
"minimum": 0
},
"legacy": {
"type": "integer",
"minimum": 0
},
"agentReady": {
"type": "integer",
"minimum": 0
}
},
"additionalProperties": false
},
"buildSha": {
"type": "string",
"minLength": 1
},
"serviceId": {
"const": "apollo"
},
"schemaVersion": {
"type": "string",
"minLength": 1
},
"catalogVersion": {
"type": "string",
"minLength": 1
},
"descriptorHash": {
"type": "string",
"pattern": "^[a-f0-9]{64}$"
}
},
"description": "Versioned Apollo provider ToolManifest.",
"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": "apollo-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "apollo.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}'
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": "apollo-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "apollo.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}),
});
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": "apollo-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "apollo.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}
response = requests.post(url, headers=headers, json=payload, timeout=60)
print(response.json())
Example Responses
- 200 Success
- 502 Upstream Error
{
"ok": true,
"message": "Tool apollo.list_capabilities 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."
}