List Capabilities
Immutable Catalog Entry
This descriptor comes from the active versioned Portal catalog.
- Contract tier:
agent_ready - Risk:
read - Catalog version:
google-2026.07.12.2 - Descriptor hash:
d294452b2ad826409bbf837a3678fe76ac85687ed0f817f61da866cf7656a375
Use this local read-only navigation tool to return Google ToolManifest counts or the complete lossless provider-owned descriptor catalog. This is a local, read-only navigation operation. It requires a valid MAD MCP Portal grant but does not contact Google or require Google OAuth credentials.
Request Body
{
"jsonrpc": "2.0",
"id": "google-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "google.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}
Arguments Schema
{
"type": "object",
"title": "list_capabilitiesArguments",
"properties": {
"include_descriptors": {
"type": "boolean",
"title": "Include Descriptors",
"default": false,
"description": "When true, return every complete ToolManifest descriptor; false returns counts only."
}
},
"additionalProperties": false
}
Output Schema
{
"type": "object",
"required": [
"schemaVersion",
"serviceId",
"catalogVersion",
"buildSha",
"descriptorHash",
"counts",
"tools"
],
"properties": {
"tools": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "Complete descriptors when requested, or an empty array for counts-only reads."
},
"counts": {
"type": "object",
"description": "Raw, agent-ready, legacy, and hidden descriptor counts.",
"additionalProperties": {
"type": "integer"
}
},
"buildSha": {
"type": "string",
"description": "Source revision used to build the running provider image."
},
"serviceId": {
"type": "string",
"description": "Canonical Portal registry service identifier."
},
"schemaVersion": {
"type": "string",
"description": "Version of the shared ToolManifest wire contract."
},
"catalogVersion": {
"type": "string",
"description": "Immutable Google provider catalog version identifier."
},
"descriptorHash": {
"type": "string",
"description": "SHA-256 digest of the canonical ordered descriptors."
}
},
"description": "Complete provider-owned Google ToolManifest catalog.",
"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": "google-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "google.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": "google-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "google.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": "google-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "google.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 google.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."
}