MCPHerramientas MCP/Descubrimiento de herramientas/search_os_tools

search_os_tools

Readmeta:read

Search for the most relevant OS tools by plain-language description of what you want to do. Matches by keyword against every registered tool's name and description, not by meaning — results are strongest when your query shares words with the tool's name or description (e.g. "reply to a review", "boost a post", "team member"). Returns up to `limit` results in relevance order, most relevant first — there's no relevance cutoff, so a result appearing here means it scored above zero, not that it's necessarily a good match; use judgment, and fall back to list_os_tools to browse by domain if nothing here looks right. Once you've found a name, call describe_os_tool(name) for its full schema, then call_os_tool(name, arguments) to run it.

Parámetros
querystringobligatorio
What you want to do, in plain language (required).
domainstringopcional
Restrict results to one domain, e.g. "reviews" or "domain:reviews" (either form accepted). Discover domain names via list_os_tools with no argument.
limitnumberopcional
Max results to return (1-25, default 10).
Solicitud de ejemplo
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "search_os_tools",
    "arguments": {
      "query": "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.