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

# Science & Technology

> Research statistics, patents, and science & technology indicators. 4 presets · 4 tools.

This category has **4 presets** registered, exposing **4 MCP tools** in total.

<Tip>
  Find the tool name you need in the `tools/list` response, then call it directly with `tools/call`.
</Tip>

## Preset list

| Name                                  | Provider  | Tools | data.go.kr                                                  |
| ------------------------------------- | --------- | ----- | ----------------------------------------------------------- |
| TechBank Registered Patent Lookup     | 한국산업기술진흥원 | 1     | [15058119](https://www.data.go.kr/data/15058119/openapi.do) |
| Research Personnel Information (NRIC) | 한국연구재단    | 1     | [15088749](https://www.data.go.kr/data/15088749/openapi.do) |
| TechBank Technology Information DB    | 한국산업기술진흥원 | 1     | [15059384](https://www.data.go.kr/data/15059384/openapi.do) |
| ICT Periodical Information            | 한국연구재단    | 1     | [15036874](https://www.data.go.kr/data/15036874/openapi.do) |

## Usage examples

<CodeGroup>
  ```bash Query category servers theme={null}
  # List the preset servers and tools in this category. (public catalog — no auth required)
  curl https://mcp.datari.kr/registry/servers \
    | jq '.servers[] | select(.id | startswith("science/"))'
  ```

  ```bash Full tool list (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>
