> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bridger.kr/llms.txt
> Use this file to discover all available pages before exploring further.

# GET /registry/servers

> Query the catalog of preset servers (MCP groups) loaded into the Bridger Gateway.

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

## Request

```http theme={null}
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

```json theme={null}
{
  "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

| Field                    | Type    | Description                                   |
| ------------------------ | ------- | --------------------------------------------- |
| `servers[]`              | array   | List of preset servers                        |
| `servers[].id`           | string  | Unique ID in category/name format             |
| `servers[].name`         | string  | Human-readable name                           |
| `servers[].filePath`     | string  | Absolute path of the source preset YAML       |
| `servers[].baseUrl`      | string  | Upstream API base URL                         |
| `servers[].isPublicData` | boolean | Whether the public-data middleware is enabled |
| `servers[].tools[]`      | array   | MCP tools this server exposes                 |

## cURL

```bash theme={null}
curl https://mcp.datari.kr/registry/servers
```

## Related endpoints

<CardGroup cols={2}>
  <Card title="GET /registry/tools" icon="wrench" href="/en/api-reference/registry-tools">
    A flattened tool list without server grouping.
  </Card>

  <Card title="POST /mcp tools/list" icon="code" href="/en/api-reference/mcp-jsonrpc">
    The MCP-standard tool-list call.
  </Card>
</CardGroup>
