/ Каталог / Песочница / korean-law-mcp
● Сообщество chrisryugj ⚡ Сразу

korean-law-mcp

автор chrisryugj · chrisryugj/korean-law-mcp

41 Korean legal APIs (법제처) condensed to 15 MCP tools — statutes, case law, amendments, treaties, legal interpretations.

chrisryugj/korean-law-mcp wraps the Korean Legislative Council (법제처) open API surface into MCP tools. Useful for lawyers, compliance officers, and researchers working with Korean statutory and case law. Chain tools compose common investigations.

Зачем использовать

Ключевые функции

Живое демо

Как выглядит на практике

korean-law.replay ▶ готово
0/0

Установка

Выберите клиент

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "korean-law": {
      "command": "npx",
      "args": [
        "-y",
        "korean-law-mcp"
      ],
      "_inferred": true
    }
  }
}

Откройте Claude Desktop → Settings → Developer → Edit Config. Перезапустите после сохранения.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "korean-law": {
      "command": "npx",
      "args": [
        "-y",
        "korean-law-mcp"
      ],
      "_inferred": true
    }
  }
}

Cursor использует ту же схему mcpServers, что и Claude Desktop. Конфиг проекта приоритетнее глобального.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "korean-law": {
      "command": "npx",
      "args": [
        "-y",
        "korean-law-mcp"
      ],
      "_inferred": true
    }
  }
}

Щёлкните значок MCP Servers на боковой панели Cline, затем "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "korean-law": {
      "command": "npx",
      "args": [
        "-y",
        "korean-law-mcp"
      ],
      "_inferred": true
    }
  }
}

Тот же формат, что и Claude Desktop. Перезапустите Windsurf для применения.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "korean-law",
      "command": "npx",
      "args": [
        "-y",
        "korean-law-mcp"
      ]
    }
  ]
}

Continue использует массив объектов серверов, а не map.

~/.config/zed/settings.json
{
  "context_servers": {
    "korean-law": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "korean-law-mcp"
        ]
      }
    }
  }
}

Добавьте в context_servers. Zed перезагружается автоматически.

claude mcp add korean-law -- npx -y korean-law-mcp

Однострочная команда. Проверить: claude mcp list. Удалить: claude mcp remove.

Сценарии использования

Реальные сценарии: korean-law-mcp

How to research a Korean statute and its case law in one session

👤 Korean legal researchers, compliance officers ⏱ ~30 min intermediate

Когда использовать: You need the statute text, recent amendments, and relevant court interpretations.

Предварительные требования
  • Node 18+ — nvm install 20
  • Install: npx korean-law-mcp setup — Adds config to your MCP client
Поток
  1. Run chain research
    chain_full_research on 개인정보 보호법 — statute, amendments in last 3 years, related decisions.✓ Скопировано
    → Structured report
  2. Drill into a clause
    get_law_text for article 17 of that act.✓ Скопировано
    → Full clause text
  3. Find dispute precedents
    search_decisions on article 17 disputes at the Constitutional Court level.✓ Скопировано
    → Decision list

Итог: A research memo that a junior associate could follow up on.

Подводные камни
  • Translations can mislead — this tool returns Korean originals — For bilingual output, pair with a translation MCP; don't trust unofficial translations in court filings
Сочетать с: google-workspace

How to prepare for a dispute with chain_dispute_prep

👤 Korean litigation teams ⏱ ~25 min advanced

Когда использовать: You're drafting a brief and need precedent quickly.

Поток
  1. Frame the issue
    chain_dispute_prep for a contract dispute over unfair clauses under 약관의 규제에 관한 법률.✓ Скопировано
    → Statute + relevant precedents + annexes
  2. Get key decision texts
    get_decision_text on the top 3 decisions returned.✓ Скопировано
    → Full opinions

Итог: A precedent-backed starting draft.

Подводные камни
  • Don't cite machine-translated text in filings — Use original Korean in filings; English is for internal discussion

How to track amendments to a law over time

👤 Compliance officers, policy analysts ⏱ ~15 min intermediate

Когда использовать: You need to know what changed and when.

Поток
  1. Run chain_amendment_track
    chain_amendment_track on 자본시장법 in the last 5 years.✓ Скопировано
    → Diff-oriented amendment log

Итог: A timeline of changes with articles affected.

Комбинации

Сочетайте с другими MCP — эффект x10

korean-law + google-workspace

Produce research memos directly into Google Docs

Run chain_full_research on 공정거래법 and write the result as a new Google Doc 'Antitrust Research 2026-04'.✓ Скопировано
korean-law + notion

Maintain a compliance knowledge base

Every Monday, run chain_amendment_track on our watchlist laws and create a Notion page with changes.✓ Скопировано

Инструменты

Что предоставляет этот MCP

ИнструментВходные данныеКогда вызыватьСтоимость
chain_full_research topic: str Broad first pass multiple API calls
chain_law_system domain: str Understand a legal area multiple calls
chain_action_basis action: str Find basis for an administrative action multiple calls
chain_dispute_prep issue: str Draft prep multiple calls
chain_amendment_track law_name, since?: str Change tracking multiple calls
search_law query Find a specific act 1 API call
get_law_text law_id, article? Retrieve clauses 1 API call
get_annexes law_id Attachments + schedules 1 API call
search_decisions query, court? Case law search 1 API call
get_decision_text decision_id Read a ruling 1 API call
discover_tools query? Find an API not covered by chain tools free
execute_tool tool_name, args Call any underlying API 1 API call

Стоимость и лимиты

Во что обходится

Квота API
법제처 public API has generous limits but no published SLA — be considerate
Токенов на вызов
Statute texts: 2k-20k tokens; keep article-scoped queries
Деньги
Free — public API
Совет
Use chain tools instead of manually stitching many execute_tool calls — faster + fewer tokens.

Безопасность

Права, секреты, радиус поражения

Минимальные скоупы: None — public API
Хранение учётных данных: No API key required
Исходящий трафик: 법제처 Open API endpoints
Никогда не давайте: Nothing — read-only public data

Устранение неполадок

Частые ошибки и исправления

Empty results for a common law

Try the official Korean name rather than English. search_law supports fuzzy Korean matching.

chain_* tool times out

Narrow the scope (single law or single year). Chain tools make many underlying calls.

Annexes return .hwp files that don't open

.hwp is Hangul Word Processor — install Hancom HWP viewer or convert via Hancom Docs.

Альтернативы

korean-law-mcp в сравнении

АльтернативаКогда использоватьКомпромисс
법제처 site directlyYou only need occasional lookupNo AI orchestration

Ещё

Ресурсы

📖 Читать официальный README на GitHub

🐙 Открытые задачи

🔍 Все 400+ MCP-серверов и Skills