mcp-forge vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-forge by achetronic | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 90 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 47 | 75 |
| 官方 | — | ✓ |
| 分类 | 开发者工具安全运维基建 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 4 个月前 | 本月 |
mcp-forge · 概述
Go语言编写、包含OAuth认证的生产级MCP服务器模板,附带部署示例。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
mcp-forge · 使用场景
- 构建带有 OAuth 认证的安全 MCP 服务器用于企业部署
- 使用最简设置在 Go 中创建自定义 MCP 工具和资源
- 使用 Helm 图表将 MCP 服务器部署到 Kubernetes
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
mcp-forge · 安装
安装
- 克隆仓库:
git clone https://github.com/achetronic/mcp-forge.git
cd mcp-forge- 先决条件:
- Go 1.24+
- 运行服务器:
make run对于本地开发与 Claude Desktop,请按照 README 中描述使用 stdio 或 HTTP 模式。
Claude Desktop 配置(HTTP 模式)
// file: claude_desktop_config.json
{
"mcpServers": {
"local-proxy-remote": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8080/mcp",
"--transport",
"http-only",
"--header",
"Authorization: Bearer ${JWT}",
"--header",
"X-Validated-Jwt: ${JWT}"
],
"env": {
"JWT": "eyJhbGciOiJSUzI1NiIsImtpZCI6..."
}
}
}
}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"
]
}
}
}