
korean-contracts
by kimlawtech·★ 42·Score 45
MCP server for generating Korean legal contracts with privacy protection features.
Overview
A specialized MCP server for creating Korean legal contracts including employment, freelancer, outsourcing agreements, and more. The server implements a privacy protection mechanism that masks personal information before sending to Claude and restores it only during local file generation. It incorporates the latest Korean labor laws, minimum wage standards, and Supreme Court precedents, with automated validation checks (RULE 1-14) to ensure legal compliance. The server provides 5 distinct MCP tools for information masking, contract saving, and document review.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this system if you need to create Korean contracts with the latest legal requirements and want your personal information protected through an MCP privacy server.
When NOT to choose this
This system is limited to Korean contracts only and doesn't support international contract templates. It also requires Claude Desktop/Codex CLI and doesn't have a standalone web interface.
Tools this server exposes
5 tools extracted from the READMEmask_personal_infoMasks personal information in contract data with tokens and stores originals locally
save_contractRestores masked contract text and saves as .txt + .docx files
load_contract_for_reviewLoads existing contract files and automatically masks personal information
save_reviewed_contractRestores and saves a reviewed contract with modifications
list_sessionsLists active masking sessions for debugging purposes
Comparable tools
Installation
Install via automated scripts:
# macOS / Linux
git clone https://github.com/kimlawtech/korean-contracts
cd korean-contracts
bash install.sh
# Windows (PowerShell)
git clone https://github.com/kimlawtech/korean-contracts
cd korean-contracts
powershell -ExecutionPolicy Bypass -File install.ps1The install script automatically:
- Creates symlinks to skills in
~/.claude/skills/ - Installs Python dependencies (
mcp,python-docx) - Registers the MCP server in Claude Desktop config:
{
"mcpServers": {
"korean-contracts": {
"command": "python3",
"args": ["/path/to/korean-contracts/mcp-server/server.py"]
}
}
}Restart Claude Desktop after installation.
FAQ
- How does the privacy protection work?
- The MCP server masks personal information (names, ID numbers, addresses, salaries) into tokens before sending to Claude, then restores them only during local file generation.
- Is this legally binding?
- The generated documents are reference drafts only, not legal advice. Always have contracts reviewed by certified labor attorneys before actual use.
Compare korean-contracts with
Last updated · Auto-generated from public README + GitHub signals.