Skip to main content
Returns information about every preset server the Gateway loaded at startup. Each server has one or more MCP tools.

Request

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

Response 200

{
  "servers": [
    {
      "id": "weather/ultra-shortcast",
      "name": "KMA Ultra-Short-Term Forecast",
      "filePath": "/abs/path/presets/weather/ultra-shortcast.yaml",
      "baseUrl": "https://apis.data.go.kr/...",
      "isPublicData": true,
      "tools": [
        {
          "name": "getultrashortcast",
          "description": "...",
          "inputSchema": { "type": "object", "properties": {} },
          "method": "GET",
          "path": "/getUltraSrtFcst"
        }
      ]
    }
  ]
}

Response fields

FieldTypeDescription
servers[]arrayList of preset servers
servers[].idstringUnique ID in category/name format
servers[].namestringHuman-readable name
servers[].filePathstringAbsolute path of the source preset YAML
servers[].baseUrlstringUpstream API base URL
servers[].isPublicDatabooleanWhether the public-data middleware is enabled
servers[].tools[]arrayMCP tools this server exposes

cURL

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

GET /registry/tools

A flattened tool list without server grouping.

POST /mcp tools/list

The MCP-standard tool-list call.