Qdrant List Capabilities
Immutable Catalog Entry
This descriptor comes from the active versioned Portal catalog.
- Contract tier:
agent_ready - Risk:
read - Catalog version:
qdrant-2026.07.12.2 - Descriptor hash:
b7ac253f9d3bcb65d46a4c88bbd13f2988b6021b780d4dde41ee9a4e56be9977
Use this when you need to inspect capability groups, catalog counts, and optionally the complete lossless ToolManifest. It does not intentionally change Qdrant or MCP state. It reads the provider-owned catalog in memory and does not contact Qdrant. Returns normalized provider data in data plus safe request and trace metadata in meta. Requires an authenticated MAD MCP Portal request and any provider configuration named by the input schema.
Request Body
{
"jsonrpc": "2.0",
"id": "qdrant-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "qdrant.list_capabilities",
"arguments": {
"include_descriptors": false
}
}
}
Arguments Schema
{
"type": "object",
"title": "Qdrant List Capabilities input",
"properties": {
"include_descriptors": {
"type": "boolean",
"title": "Include Descriptors",
"default": false,
"description": "When true, include the complete ordered ToolManifest under manifest for Portal catalog ingestion."
}
},
"description": "Validated input contract for the list_capabilities native Qdrant MCP tool."
}
Output Schema
{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"data",
"meta"
],
"properties": {
"data": {
"type": "object",
"required": [
"service",
"service_id",
"tool_count",
"catalog_version",
"counts",
"groups",
"catalog_groups"
],
"properties": {
"counts": {
"type": "object",
"description": "Raw and tier-specific descriptor counts.",
"additionalProperties": true
},
"groups": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "Compact category and risk summaries."
},
"service": {
"type": "string",
"description": "Canonical provider service identifier."
},
"manifest": {
"type": "object",
"required": [
"schemaVersion",
"serviceId",
"catalogVersion",
"buildSha",
"descriptorHash",
"counts",
"tools"
],
"properties": {
"tools": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"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
},
"documented": {
"type": "integer",
"minimum": 0
}
},
"additionalProperties": false
},
"buildSha": {
"type": "string",
"minLength": 1
},
"serviceId": {
"const": "qdrant"
},
"schemaVersion": {
"const": "1.0.0"
},
"catalogVersion": {
"type": "string",
"minLength": 1
},
"descriptorHash": {
"type": "string",
"pattern": "^[a-f0-9]{64}$"
},
"serviceAliases": {
"type": "array",
"items": {
"type": "string"
}
}
},
"description": "Complete versioned Qdrant provider ToolManifest.",
"additionalProperties": false
},
"service_id": {
"const": "qdrant",
"description": "Canonical ToolManifest service identifier."
},
"tool_count": {
"type": "integer",
"description": "Compatibility count of active native tools."
},
"catalog_groups": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "Complete category-level catalog counts."
},
"catalog_version": {
"type": "string",
"description": "Published Qdrant catalog version."
}
},
"description": "Qdrant capability summary and optional complete ToolManifest.",
"additionalProperties": false
},
"meta": {
"type": "object",
"properties": {
"bytes_in": {
"type": "integer",
"description": "Approximate serialized input byte count."
},
"warnings": {
"type": "array",
"items": {
"type": "string"
},
"description": "Safe recovery warnings."
},
"bytes_out": {
"type": "integer",
"description": "Approximate serialized output byte count."
},
"elapsed_ms": {
"type": "integer",
"description": "Tool execution time in milliseconds."
},
"request_id": {
"type": "string",
"description": "Stable request trace identifier."
},
"server_version": {
"type": "string",
"description": "Deployed source revision when available."
},
"serialization_ms": {
"type": "integer",
"description": "Response serialization time in milliseconds."
},
"server_uptime_ms": {
"type": "integer",
"description": "Server process uptime in milliseconds."
},
"server_instance_id": {
"type": "string",
"description": "Ephemeral server-process identifier."
}
},
"description": "Secret-safe request, trace, size, timing, and warning metadata.",
"additionalProperties": true
}
},
"description": "Qdrant MCP normalized response envelope.",
"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": "qdrant-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "qdrant.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": "qdrant-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "qdrant.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": "qdrant-list-capabilities-example",
"method": "tools/call",
"params": {
"name": "qdrant.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 qdrant.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."
}