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

# 환경 설정

> Bridger Gateway를 호출하기 위한 API 키와 기본 엔드포인트를 설정합니다.

Bridger는 별도 패키지 설치 없이 호스팅 Gateway로 사용할 수 있습니다.
클라이언트에서는 API 키와 Gateway URL만 설정하면 됩니다.

## API 키

[admin.datari.kr](https://admin.datari.kr)에서 계정을 만들고 **Settings → API Keys**에서 키를 발급받습니다.

```bash theme={null}
export DATA_BRIDGE_API_KEY="dk_live_..."
```

## Gateway URL

```bash theme={null}
export DATA_BRIDGE_GATEWAY_URL="https://mcp.datari.kr/mcp"
```

## 연결 확인

```bash theme={null}
curl -X POST "$DATA_BRIDGE_GATEWAY_URL" \
  -H "x-api-key: $DATA_BRIDGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
```

## 다음 단계

<CardGroup cols={2}>
  <Card title="첫 도구 호출" icon="play" href="/getting-started/first-tool">
    Gateway에 연결하고 도구를 실행해 봅니다.
  </Card>

  <Card title="Claude에 연결" icon="message" href="/guides/claude">
    Claude Desktop에서 Bridger 도구를 사용합니다.
  </Card>
</CardGroup>
