MCPHerramientas MCP/Descubrimiento de herramientas/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.
Parámetros
namestringobligatorio
The exact tool name to run (required), from search_os_tools/list_os_tools/describe_os_tool.
argumentsobjectopcional
Arguments matching the target tool's input schema (from describe_os_tool). Omit or pass {} for a tool with no required arguments.
Solicitud de ejemplo
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "call_os_tool",
"arguments": {
"name": "string"
}
}
}Respuesta de ejemplo
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"content": [
{
"type": "text",
"text": "..."
}
]
}
}La forma de la respuesta se muestra a modo ilustrativo — el contenido real depende de la herramienta y de tus datos.