MCPFerramentas MCP/Descoberta de ferramentas/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.
Exemplo de solicitação
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "describe_os_tools",
    "arguments": {}
  }
}
Exemplo de resposta
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

O formato da resposta é ilustrativo — o conteúdo real depende da ferramenta e dos seus dados.