MCPHerramientas MCP/Descubrimiento de herramientas/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.
Parámetros
namesstring[]opcional
Exact tool names to describe. Omit (or pass an empty array) to describe every registered tool.
domainstringopcional
Restrict to one domain, e.g. "reviews" (either form accepted). Only applies when `names` is omitted.
Solicitud de ejemplo
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe_os_tools",
"arguments": {}
}
}Respuesta de ejemplo
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"content": [
{
"type": "text",
"text": "..."
}
]
}
}La forma de la respuesta se muestra a modo ilustrativo — el contenido real depende de la herramienta y de tus datos.