MCP Catalogs
Home

korean-contracts vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

korean-contracts
by kimlawtech
filesystem
by modelcontextprotocol
Stars★ 42★ 85,748
30d uses
Score4577
Official
Categories
AI / LLM ToolsProductivityDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageGo TemplateTypeScript
Last commit1 mo agothis month

korean-contracts · Summary

MCP server for generating Korean legal contracts with privacy protection features.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

The install script automatically:

  1. Creates symlinks to skills in ~/.claude/skills/
  2. Installs Python dependencies (mcp, python-docx)
  3. 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.

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.