MCP Catalogs
首页

seoul-essentials vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

seoul-essentials
by do-droid
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30天用量
综合分3677
官方
分类
AI / LLM 工具其它
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交2 个月前本月

seoul-essentials · 概述

为旅游AI助手提供首尔公共设施数据的 MCP 服务器。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

seoul-essentials · 使用场景

  • 为游客提供支持英语药房的聊天机器人
  • 导航应用查找附近的公共厕所或WiFi热点
  • 紧急服务定位首尔最近的AED设备

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

seoul-essentials · 安装

安装

**选项 A:通过 Smithery(推荐)** 访问 [Seoul Essentials on Smithery](https://smithery.ai/servers/do-droid/seoul-essentials) 并按照说明进行设置。

**选项 B:直接连接** 添加到您的 MCP 客户端配置(例如 Claude Desktop claude_desktop_config.json):

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

**选项 C:本地运行**

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 · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。