MCPMCP-Tools/Tool-Erkennung/call_os_tool

call_os_tool

Writemeta:write

Execute any real OS tool by exact name with the given arguments — the actual invocation path for every tool discovered via search_os_tools/list_os_tools/describe_os_tool. Subject to the exact same policy checks as calling the tool directly (including the read-only guard, when active) — this is a proxy, not a bypass.

Parameter
namestringerforderlich
The exact tool name to run (required), from search_os_tools/list_os_tools/describe_os_tool.
argumentsobjectoptional
Arguments matching the target tool's input schema (from describe_os_tool). Omit or pass {} for a tool with no required arguments.
Beispielanfrage
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "call_os_tool",
    "arguments": {
      "name": "string"
    }
  }
}
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.