> ## 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

> Bridger Gateway에 로드된 프리셋 서버(MCP 그룹) 카탈로그 조회.

Gateway가 시작 시 로드한 모든 프리셋 서버 정보를 반환합니다. 각 서버는 1개 이상의 MCP 도구를 가집니다.

## Request

```http theme={null}
GET /registry/servers
```

* 인증: 불필요 — 프리셋 카탈로그는 공개 정보이며 로그인 전에도 조회할 수 있습니다.
* Content-Type: 해당 없음

## Response 200

```json theme={null}
{
  "servers": [
    {
      "id": "weather/ultra-shortcast",
      "name": "기상청 초단기예보",
      "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"
        }
      ]
    }
  ]
}
```

## 응답 필드

| 필드                       | 타입      | 설명                    |
| ------------------------ | ------- | --------------------- |
| `servers[]`              | array   | 프리셋 서버 목록             |
| `servers[].id`           | string  | 카테고리/이름 형식의 고유 ID     |
| `servers[].name`         | string  | 사람이 읽는 이름             |
| `servers[].filePath`     | string  | 원본 프리셋 YAML 절대 경로     |
| `servers[].baseUrl`      | string  | upstream API base URL |
| `servers[].isPublicData` | boolean | 공공데이터 미들웨어 활성화 여부     |
| `servers[].tools[]`      | array   | 이 서버가 노출하는 MCP 도구     |

## cURL

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

## 관련 엔드포인트

<CardGroup cols={2}>
  <Card title="GET /registry/tools" icon="wrench" href="/api-reference/registry-tools">
    서버 그룹 없이 평탄화된 도구 목록.
  </Card>

  <Card title="POST /mcp tools/list" icon="code" href="/api-reference/mcp-jsonrpc">
    MCP 표준 도구 목록 호출.
  </Card>
</CardGroup>
