sequentialthinking vs 1mcp
并排对比,帮你在这两个 MCP server 之间做选择。
sequentialthinking by modelcontextprotocol | 1mcp by slzcdhd | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30天用量 | — | — |
| 综合分 | 75 | 33 |
| 官方 | ✓ | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 开发者工具运维基建其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 10 个月前 |
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
1mcp · 概述
1mcp 是一个中心代理服务器,将多个 MCP 服务器聚合到统一接口。
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
1mcp · 使用场景
- 将多个 MCP 服务器组织成单个端点供客户端应用使用
- 在不同物理机器或环境中分发 MCP 能力
- 为 MCP 服务器集群提供故障转移和负载均衡
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"
]
}
}
}1mcp · 安装
安装
先决条件
- Node.js 18+
- npm 或 yarn
设置步骤
- 克隆并安装依赖项:
git clone <repository-url>
cd 1mcp
npm install- 构建项目:
npm run build- 创建配置文件:
cp config/mcp_servers.json.example config/mcp_servers.json- 启动服务器:
npm startClaude Desktop 配置
添加到 claude_desktop_config.json:
{
"mcpServers": {
"1mcp": {
"command": "node",
"args": ["<1mcp-路径>/dist/main.js"],
"env": {
"CONFIG_PATH": "<配置-路径>/mcp_servers.json"
}
}
}
}