one-mcp vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
one-mcp by burugo | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 390 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 75 |
| 官方 | — | ✓ |
| 分类 | 开发者工具运维基建其它 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 本月 | 本月 |
one-mcp · 概述
One MCP 是一个集中式 MCP 服务代理平台,提供 Web 界面、分析功能和分组能力。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
one-mcp · 使用场景
- 在中央仪表板中管理多个 MCP 服务,而不是单独配置每个服务
- 通过将多个 MCP 服务分组到单个端点来创建自定义 Claude Skills
- 监控整个组织中 MCP 服务的使用情况分析和性能指标
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
one-mcp · 安装
Homebrew 安装(macOS 和 Linux)
# 添加 tap
brew tap burugo/tap
# 安装 one-mcp
brew install one-mcp
# 作为后台服务启动
brew services start one-mcpDocker 安装
docker run --name one-mcp -d \
--restart always \
-p 3000:3000 \
-v $(pwd)/data:/data \
buru2020/one-mcp:latest手动安装
git clone https://github.com/burugo/one-mcp.git
cd one-mcp
cp .env_example .env
bash ./run.sh**默认登录**:用户名 root,密码 123456
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"
]
}
}
}