MCPMCP-Tools/Tool-Erkennung/describe_os_tools
describe_os_tools
Readmeta:read
Bulk form of describe_os_tool: get the full schema for MANY tools in ONE call. Pass `names` (array of exact tool names) or omit it to get every registered tool. Prefer this over looping describe_os_tool when you need more than a couple of schemas — each describe is a network round trip, and this collapses N of them into one.
Parameter
namesstring[]optional
Exact tool names to describe. Omit (or pass an empty array) to describe every registered tool.
domainstringoptional
Restrict to one domain, e.g. "reviews" (either form accepted). Only applies when `names` is omitted.
Beispielanfrage
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe_os_tools",
"arguments": {}
}
}Beispielantwort
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"content": [
{
"type": "text",
"text": "..."
}
]
}
}Die Antwortform dient nur zur Veranschaulichung — der tatsächliche Inhalt hängt vom Tool und Ihren Daten ab.