boltmcp vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
boltmcp by boltmcp | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 350 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 75 |
| 官方 | — | ✓ |
| 分类 | 运维基建开发者工具安全 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Shell | TypeScript |
| 最近提交 | 本月 | 本月 |
boltmcp · 概述
BoltMCP 是一个企业级平台,用于在本地创建和管理自定义 MCP 服务器,具有 OAuth 2 安全性。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
boltmcp · 使用场景
- 在包含本地数据的企业环境中部署 MCP 服务器
- 创建与多个上游 API 的自定义工具集成
- 构建具有 OAuth 2 认证的安全 MCP 服务器
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
boltmcp · 安装
安装
使用 Docker Compose 本地测试
cd docker-compose
docker-compose up -d使用 Helm 生产部署
helm install boltmcp ./helm-chartClaude Desktop 配置
添加到 Claude Desktop config.json:
{
"mcpServers": {
"boltmcp": {
"command": "docker",
"args": ["run", "-it", "boltmcp/server"]
}
}
}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"
]
}
}
}