MCPMCP Tools/Tool Discovery/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.

Parameters
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.
Example request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "describe_os_tools",
    "arguments": {}
  }
}
Example response
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

Response shape shown for illustration — the actual content depends on the tool and your data.