MCPMCP Tools/Tool Discovery/list_os_tools
list_os_tools
Readmeta:read
List every registered OS tool grouped by domain — name + one-line description only, built live from the actual tool registry (never a static/hardcoded list, so it can't go stale). Use this when search_os_tools comes up empty, or when you know the domain but not the exact tool name. Call describe_os_tool(name) for a specific tool's full input schema.
Parameters
domainstringoptional
Restrict to one domain, e.g. "reviews" or "domain:reviews" (either form accepted). Omit to see every domain.
Example request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "list_os_tools",
"arguments": {}
}
}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.