MCP Catalogs
首页

hasmcp-ce vs everything

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

hasmcp-ce
by hasmcp
everything
by modelcontextprotocol
Stars★ 27★ 85,748
30天用量
综合分4077
官方
分类
开发者工具api-integration运维基建
开发者工具AI / LLM 工具其它
实现语言GoTypeScript
最近提交4 个月前本月

hasmcp-ce · 概述

HasMCP-CE 无需编写代码即可将 API 端点转换为 MCP 服务器。

everything · 概述

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

hasmcp-ce · 使用场景

  • 将现有的 REST API 端点转换为 MCP 服务器,以便与 AI 模型集成
  • 为内部 API 创建 MCP 服务器,而无需编写自定义 MCP 实现
  • 管理多个作为 MCP 工具的 API 端点,带有认证和代理功能

everything · 使用场景

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

hasmcp-ce · 安装

安装

使用 Docker(推荐)

  1. 创建目录:
mkdir hasmcp
cd hasmcp
mkdir -p _certs _storage
chmod 0777 _certs _storage
  1. 下载环境文件:
wget https://github.com/hasmcp/hasmcp-ce/blob/main/backend/cmd/server/.env.example -O .env
  1. 使用 Docker 运行:
docker stop hasmcp-ce || true; \
  docker rm hasmcp-ce || true; \
  docker image prune -f; \
  docker pull hasmcp/hasmcp-ce:latest; \
  docker run --env-file .env -p 80:80 -p 443:443 --name hasmcp-ce \
    -v ./_certs:/_certs \
    -v ./_storage:/_storage \
    -d --restart always hasmcp/hasmcp-ce:latest

Claude Desktop 配置

添加到 Claude Desktop config.json:

{
  "mcpServers": {
    "hasmcp": {
      "command": "docker",
      "args": ["run", "--rm", "hasmcp/hasmcp-ce:latest"]
    }
  }
}

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 公开数据自动生成,定期更新。