hasmcp-ce vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
hasmcp-ce by hasmcp | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 27 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 40 | 75 |
| 官方 | — | ✓ |
| 分类 | 开发者工具api-integration运维基建 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 4 个月前 | 本月 |
hasmcp-ce · 概述
HasMCP-CE 无需编写代码即可将 API 端点转换为 MCP 服务器。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
hasmcp-ce · 使用场景
- 将现有的 REST API 端点转换为 MCP 服务器,以便与 AI 模型集成
- 为内部 API 创建 MCP 服务器,而无需编写自定义 MCP 实现
- 管理多个作为 MCP 工具的 API 端点,带有认证和代理功能
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
hasmcp-ce · 安装
安装
使用 Docker(推荐)
- 创建目录:
mkdir hasmcp
cd hasmcp
mkdir -p _certs _storage
chmod 0777 _certs _storage- 下载环境文件:
wget https://github.com/hasmcp/hasmcp-ce/blob/main/backend/cmd/server/.env.example -O .env- 使用 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:latestClaude Desktop 配置
添加到 Claude Desktop config.json:
{
"mcpServers": {
"hasmcp": {
"command": "docker",
"args": ["run", "--rm", "hasmcp/hasmcp-ce:latest"]
}
}
}sequentialthinking · 安装
安装
**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**VS Code**: 使用安装按钮或手动配置:
{
"servers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**Docker**:
{
"mcpServers": {
"sequentialthinking": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/sequentialthinking"
]
}
}
}