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

# Law & Administration

> Statutes, case law, administrative appeals, and regulatory information. 6 presets · 6 tools.

This category has **6 presets** registered, exposing **6 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                                                  |
| ---------------------------------------------- | -------- | ----- | ----------------------------------------------------------- |
| Administrative Appeal Lookup                   | 국민권익위원회  | 1     | [3084452](https://www.data.go.kr/data/3084452/openapi.do)   |
| Court Case Search                              | 법제처      | 1     | [15059269](https://www.data.go.kr/data/15059269/openapi.do) |
| Tax Law Interpretation Search                  | 법제처      | 1     | [15140313](https://www.data.go.kr/data/15140313/openapi.do) |
| Gyeonggi Disabled Legal Aid Statistics Dataset | 경기도      | 1     | [15057663](https://www.data.go.kr/data/15057663/openapi.do) |
| Legislative Notice Detail Search               | 법제처      | 1     | [15090734](https://www.data.go.kr/data/15090734/openapi.do) |
| Notary Information Lookup                      | 법무부      | 1     | [15121942](https://www.data.go.kr/data/15121942/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("law/"))'
  ```

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