sequentialthinking vs toolhive-registry-server
并排对比,帮你在这两个 MCP server 之间做选择。
sequentialthinking by modelcontextprotocol | toolhive-registry-server by stacklok | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30天用量 | — | — |
| 综合分 | 75 | 42 |
| 官方 | ✓ | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 运维基建开发者工具安全 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 本月 |
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
toolhive-registry-server · 概述
ToolHive 注册服务器用于发现、管控和组织内 MCP 服务器与技能的访问权限。
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
toolhive-registry-server · 使用场景
- 在拥有多个团队的大型组织中集中管理 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"
]
}
}
}toolhive-registry-server · 安装
安装
前提条件
- Go 1.26 或更高版本(用于从源码构建)
- Task(用于构建自动化)
- PostgreSQL 16+
从源码构建
task build运行
# 使用 Git 源运行
thv-registry-api serve --config examples/config-git.yaml
# 使用本地文件运行
thv-registry-api serve --config examples/config-file.yamlDocker
task docker-upClaude Desktop 集成
添加到 Claude Desktop 配置:
{
"mcpServers": {
"toolhive": {
"command": "thv-registry-api",
"args": ["serve", "--config", "path/to/config.yaml"]
}
}
}