MCP Catalogs
Home

seoul-essentials vs everything

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

seoul-essentials
by do-droid
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3677
Official
Categories
AI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit2 mo agothis month

seoul-essentials · Summary

An MCP server providing Seoul's public facility data for tourist assistance AI agents.

everything · Summary

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

seoul-essentials · Use cases

  • Tourist assistance chatbots providing directions to English-speaking pharmacies
  • Navigation applications finding nearby public restrooms or WiFi hotspots
  • Emergency services locating the closest AED in Seoul

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

seoul-essentials · Install

Installation

**Option A: Smithery (Recommended)** Visit [Seoul Essentials on Smithery](https://smithery.ai/servers/do-droid/seoul-essentials) and follow the setup instructions.

**Option B: Direct Connection** Add to your MCP client config (e.g., Claude Desktop claude_desktop_config.json):

{
  "mcpServers": {
    "seoul-essentials": {
      "url": "https://seoul-essentials-mcp-230987091625.asia-northeast3.run.app/mcp"
    }
  }
}

**Option C: Run Locally**

git clone https://github.com/do-droid/seoul-essentials.git
cd seoul-essentials
API_BASE_URL="https://asia-northeast3-seoul-essentials.cloudfunctions.net/api" \nuv run python -m src.server

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.