MCP Catalogs
Home

korean-law-mcp vs everything

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

korean-law-mcp
by chrisryugj
everything
by modelcontextprotocol
Stars★ 1,732★ 85,748
30d uses
Score5677
Official
Categories
AI / LLM ToolsKnowledge GraphDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

korean-law-mcp · Summary

Korean legal MCP server transforming 41 government APIs into 17 tools with citation verification, impact mapping, and time comparison.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

korean-law-mcp · Use cases

  • Legal research professionals verifying AI-generated citations against official Korean law databases
  • Citizens seeking step-by-step guidance for legal issues like rental deposit disputes
  • Policy analysts comparing legal changes across different time periods to understand impacts

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-law-mcp · Install

Installation

npm

npm install -g korean-law-mcp

Claude Desktop

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "korean-law": {
      "command": "npx",
      "args": ["korean-law-mcp"]
    }
  }
}

Docker

docker run -p 8080:8080 chrisryugj/korean-law-mcp

Direct API

curl https://korean-law-mcp.fly.dev/mcp

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
Comparison generated from public README + GitHub signals. Last updated automatically.