korean-contracts vs everything
Side-by-side comparison to help you pick between these two MCP servers.
korean-contracts by kimlawtech | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 42 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsProductivityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Go Template | TypeScript |
| Last commit | 1 mo ago | this month |
korean-contracts · Summary
MCP server for generating Korean legal contracts with privacy protection features.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
korean-contracts · Use cases
- HR professionals and business owners need to create compliant employment contracts in Korea
- Freelancers and contractors require legally sound agreement templates
- Small business owners need to review existing contracts against current regulations
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
korean-contracts · Install
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.
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything