Skip to main content
Unlike /registry/servers, this returns a flattened tool list with server groups expanded. It’s a good fit for UIs that need per-tool search and pagination.

Request

GET /registry/tools
  • Authentication: not required — the preset catalog is public information and can be queried before sign-in.

Response 200

{
  "tools": [
    {
      "name": "getultrashortcast",
      "description": "...",
      "inputSchema": { "type": "object", "properties": {} },
      "method": "GET",
      "path": "/getUltraSrtFcst"
    }
  ]
}
FieldTypeDescription
tools[].namestringMCP tool name
tools[].descriptionstringHuman-readable description
tools[].inputSchemaJSON SchemaInput parameter schema
tools[].methodstringUpstream HTTP method
tools[].pathstringUpstream path (relative to servers[].baseUrl)

cURL

curl https://mcp.datari.kr/registry/tools

POST /mcp tools/list

Query the same information via the MCP-standard interface.

GET /registry/servers

Catalog by server group.