MCPMCP Tools/Tool Discovery/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.
Parameters
namestringrequired
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.
Example request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "call_os_tool",
"arguments": {
"name": "string"
}
}
}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.