MCPHerramientas MCP/Descubrimiento de herramientas

Descubrimiento de herramientas

Busca, lista y describe cada herramienta de este catálogo, o llama a una por su nombre — útil para un cliente que prefiere una lista compacta de herramientas en vez de cargarlas todas.

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.

MCPHerramientas MCP/Descubrimiento de herramientas/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.

Parámetros
domainstringopcional
Restrict to one domain, e.g. "reviews" or "domain:reviews" (either form accepted). Omit to see every domain.
Solicitud de ejemplo
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_os_tools",
    "arguments": {}
  }
}
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.

MCPHerramientas MCP/Descubrimiento de herramientas/describe_os_tool

describe_os_tool

Readmeta:read

Get the full description, input schema, and mutation/scope metadata for one tool by exact name. Use this after search_os_tools or list_os_tools has identified a candidate, before calling call_os_tool.

Parámetros
namestringobligatorio
The exact tool name (required), e.g. "list_reviews".
Solicitud de ejemplo
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "describe_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.

MCPHerramientas MCP/Descubrimiento de herramientas/describe_os_tools

describe_os_tools

Readmeta:read

Bulk form of describe_os_tool: get the full schema for MANY tools in ONE call. Pass `names` (array of exact tool names) or omit it to get every registered tool. Prefer this over looping describe_os_tool when you need more than a couple of schemas — each describe is a network round trip, and this collapses N of them into one.

Parámetros
namesstring[]opcional
Exact tool names to describe. Omit (or pass an empty array) to describe every registered tool.
domainstringopcional
Restrict to one domain, e.g. "reviews" (either form accepted). Only applies when `names` is omitted.
Solicitud de ejemplo
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "describe_os_tools",
    "arguments": {}
  }
}
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.

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.