/ Verzeichnis / Playground / korean-law-mcp
● Community chrisryugj ⚡ Sofort

korean-law-mcp

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

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

korean-law.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/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
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

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

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

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

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

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

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

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

Continue nutzt ein Array von Serverobjekten statt einer Map.

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

In context_servers hinzufügen. Zed lädt beim Speichern neu.

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

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: korean-law-mcp

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

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

Wann einsetzen: You need the statute text, recent amendments, and relevant court interpretations.

Voraussetzungen
  • Node 18+ — nvm install 20
  • Install: npx korean-law-mcp setup — Adds config to your MCP client
Ablauf
  1. Run chain research
    chain_full_research on 개인정보 보호법 — statute, amendments in last 3 years, related decisions.✓ Kopiert
    → Structured report
  2. Drill into a clause
    get_law_text for article 17 of that act.✓ Kopiert
    → Full clause text
  3. Find dispute precedents
    search_decisions on article 17 disputes at the Constitutional Court level.✓ Kopiert
    → Decision list

Ergebnis: A research memo that a junior associate could follow up on.

Fallstricke
  • Translations can mislead — this tool returns Korean originals — For bilingual output, pair with a translation MCP; don't trust unofficial translations in court filings
Kombinieren mit: google-workspace

How to prepare for a dispute with chain_dispute_prep

👤 Korean litigation teams ⏱ ~25 min advanced

Wann einsetzen: You're drafting a brief and need precedent quickly.

Ablauf
  1. Frame the issue
    chain_dispute_prep for a contract dispute over unfair clauses under 약관의 규제에 관한 법률.✓ Kopiert
    → Statute + relevant precedents + annexes
  2. Get key decision texts
    get_decision_text on the top 3 decisions returned.✓ Kopiert
    → Full opinions

Ergebnis: A precedent-backed starting draft.

Fallstricke
  • 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

Wann einsetzen: You need to know what changed and when.

Ablauf
  1. Run chain_amendment_track
    chain_amendment_track on 자본시장법 in the last 5 years.✓ Kopiert
    → Diff-oriented amendment log

Ergebnis: A timeline of changes with articles affected.

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

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'.✓ Kopiert
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.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
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

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
법제처 public API has generous limits but no published SLA — be considerate
Tokens pro Aufruf
Statute texts: 2k-20k tokens; keep article-scoped queries
Kosten in €
Free — public API
Tipp
Use chain tools instead of manually stitching many execute_tool calls — faster + fewer tokens.

Sicherheit

Rechte, Secrets, Reichweite

Minimale Scopes: None — public API
Credential-Speicherung: No API key required
Datenabfluss: 법제처 Open API endpoints
Niemals gewähren: Nothing — read-only public data

Fehlerbehebung

Häufige Fehler und Lösungen

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.

Alternativen

korean-law-mcp vs. andere

AlternativeWann stattdessenKompromiss
법제처 site directlyYou only need occasional lookupNo AI orchestration

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen