loading…
Search for a command to run...
loading…
Enables AI assistants to search, retrieve, and analyze South Korean legal documents including statutes, precedents, constitutional decisions, and administrative
Enables AI assistants to search, retrieve, and analyze South Korean legal documents including statutes, precedents, constitutional decisions, and administrative rulings via the Ministry of Government Legislation Open API. Provides 89 specialized tools with features like legal abbreviation auto-recognition, annex extraction, and complex research chain workflows.
대한민국 법령 검색/조회/분석을 위한 MCP 서버입니다. 법제처 Open API를 기반으로 89개 법률 도구를 제공합니다.
Based on korean-law-mcp by chrisryugj (MIT License)
모든 사용법에 공통으로 필요한 **법제처 Open API 인증키(OC)**를 먼저 발급받으세요.
honggildong)Claude Pro/Max/Team/Enterprise 요금제에서 커넥터로 바로 사용할 수 있습니다.
honggildong을 본인 인증키로 교체):https://korean-law-mcp.fly.dev/mcp?profile=lite&oc=honggildong
lite vs full: lite(14개 도구)로도 89개 전체 기능 사용 가능. URL에서
profile=lite&를 제거하면 full 모드.
설정 파일에 아래 내용을 추가하세요:
| 앱 | 설정 파일 위치 |
|---|---|
| Claude Desktop (Win) | %APPDATA%\Claude\claude_desktop_config.json |
| Claude Desktop (Mac) | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Cursor / Windsurf | 프로젝트 폴더 .cursor/mcp.json 또는 .windsurf/mcp.json |
{
"mcpServers": {
"korean-law": {
"url": "https://korean-law-mcp.fly.dev/mcp?oc=honggildong"
}
}
}
npm install -g kjh-law-mcp
AI 앱 설정:
{
"mcpServers": {
"korean-law": {
"command": "korean-law-mcp",
"env": {
"LAW_OC": "honggildong"
}
}
}
}
# 인증키 설정
export LAW_OC=honggildong # Mac/Linux
set LAW_OC=honggildong # Windows CMD
$env:LAW_OC="honggildong" # Windows PowerShell
# 사용 예시
korean-law "민법 제1조" # 자연어 조회
korean-law search_law --query "관세법" # 도구 직접 호출
korean-law list # 전체 도구 목록
korean-law help search_law # 도구별 도움말
| 방법 | 사용법 | 용도 |
|---|---|---|
| URL 포함 | ?oc=내키 |
웹 클라이언트 |
| HTTP 헤더 | apikey: 내키 |
프로그래밍 연동 |
| 환경변수 | LAW_OC=내키 |
로컬 설치 |
| 도구 파라미터 | apiKey: "내키" |
특정 요청 |
"관세법 제38조 알려줘"
→ search_law("관세법") → MST 획득 → get_law_text(mst, jo="003800")
"화관법 최근 개정 비교"
→ "화관법" → "화학물질관리법" 자동 변환 → compare_old_new(mst)
"근로기준법 제74조 해석례"
→ search_interpretations("근로기준법 제74조") → get_interpretation_text(id)
"산업안전보건법 별표1 내용 알려줘"
→ get_annexes(lawName="산업안전보건법 별표1") → HWPX 다운로드 → Markdown 변환
| 카테고리 | 개수 | 주요 도구 |
|---|---|---|
| 검색 | 11 | search_law, search_precedents, search_all, get_annexes |
| 조회 | 9 | get_law_text, get_batch_articles, compare_old_new, get_three_tier |
| 분석 | 10 | compare_articles, get_law_tree, summarize_precedent, analyze_document |
| 전문: 조세/관세 | 4 | search_tax_tribunal_decisions, search_customs_interpretations |
| 전문: 헌재/행심 | 4 | search_constitutional_decisions, search_admin_appeals |
| 전문: 위원회 결정 | 8 | 공정위, 개보위, 노동위, 감사원 |
| 특별행정심판 | 4 | search_acr_special_appeals, search_appeal_review_decisions |
| 법령-자치법규 연계 | 4 | get_linked_ordinances, get_delegated_laws |
| 조약 | 2 | search_treaties, get_treaty_text |
| 학칙/공단/공공기관 | 6 | search_school_rules, search_public_corp_rules, search_public_institution_rules |
| 지식베이스 | 7 | get_legal_term_kb, get_daily_to_legal, get_related_laws |
| 체인 | 8 | chain_full_research, chain_law_system, chain_document_review |
| 메타 | 2 | discover_tools, execute_tool (lite 프로필용) |
| 기타 | 10 | AI 검색, 영문법령, 연혁법령, 법령용어, 약칭, 법체계도, 행정규칙비교 |
화관법 -> 화학물질관리법), 조문번호 변환Based on korean-law-mcp by chrisryugj (MIT License)
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"kjh-law-mcp": {
"command": "npx",
"args": []
}
}
}