MCPOutils MCP/Découverte d'outils/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.

Paramètres
namesstring[]facultatif
Exact tool names to describe. Omit (or pass an empty array) to describe every registered tool.
domainstringfacultatif
Restrict to one domain, e.g. "reviews" (either form accepted). Only applies when `names` is omitted.
Exemple de requête
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "describe_os_tools",
    "arguments": {}
  }
}
Exemple de réponse
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

La forme de la réponse est indicative — le contenu réel dépend de l'outil et de vos données.