MCPOutils MCP/Découverte d'outils/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.
Paramètres
namestringobligatoire
The exact tool name to run (required), from search_os_tools/list_os_tools/describe_os_tool.
argumentsobjectfacultatif
Arguments matching the target tool's input schema (from describe_os_tool). Omit or pass {} for a tool with no required arguments.
Exemple de requête
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "call_os_tool",
"arguments": {
"name": "string"
}
}
}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.