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

# 과학 · 기술

> 연구 통계, 특허, 과학 기술 지표. 총 4개 프리셋 · 4개 도구.

이 카테고리에는 **4개의 프리셋**이 등록되어 있으며, 합산 **4개의 MCP 도구**가 노출됩니다.

<Tip>
  필요한 도구 이름은 `tools/list` 응답에서 확인한 뒤 `tools/call`로 바로 호출할 수 있습니다.
</Tip>

## 프리셋 목록

| 이름                                 | 제공기관      | 도구 수 | data.go.kr                                                  |
| ---------------------------------- | --------- | ---- | ----------------------------------------------------------- |
| 한국산업기술진흥원\_기술은행 등록기술 특허 조회 서비스     | 한국산업기술진흥원 | 1    | [15058119](https://www.data.go.kr/data/15058119/openapi.do) |
| 한국연구재단\_전문연구정보(NRIC) 조회 오픈 API 서비스 | 한국연구재단    | 1    | [15088749](https://www.data.go.kr/data/15088749/openapi.do) |
| 한국산업기술진흥원\_기술은행 기술정보 DB 서비스        | 한국산업기술진흥원 | 1    | [15059384](https://www.data.go.kr/data/15059384/openapi.do) |
| 한국연구재단\_ICT 정기간행물 정보               | 한국연구재단    | 1    | [15036874](https://www.data.go.kr/data/15036874/openapi.do) |

## 사용 예시

<CodeGroup>
  ```bash 카테고리 서버 조회 theme={null}
  # 이 카테고리의 프리셋 서버와 도구를 확인합니다. (공개 카탈로그 — 인증 불필요)
  curl https://mcp.datari.kr/registry/servers \
    | jq '.servers[] | select(.id | startswith("science/"))'
  ```

  ```bash 전체 도구 목록 (MCP) theme={null}
  curl -X POST https://mcp.datari.kr/mcp \
    -H "x-api-key: $DATA_BRIDGE_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | jq '.result.tools[].name'
  ```
</CodeGroup>
