sequentialthinking vs odoo-claude-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
sequentialthinking by modelcontextprotocol | odoo-claude-mcp by rosenvladimirov | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30天用量 | — | — |
| 综合分 | 75 | 45 |
| 官方 | ✓ | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 开发者工具电商运维基建 |
| 实现语言 | TypeScript | HTML |
| 最近提交 | 本月 | 本月 |
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
odoo-claude-mcp · 概述
生产级MCP服务器,连接Claude到Odoo 15-19,拥有197+工具、多租户支持和保加利亚本地化功能。
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
odoo-claude-mcp · 使用场景
- Odoo开发者可以在其实例上实时开发模块,Claude直接协助开发
- 业务用户可以用自然语言询问销售数据,并从Odoo记录中获得实时洞察
- 平台运营商可以为每个客户托管具有隔离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"
]
}
}
}odoo-claude-mcp · 安装
安装选项
**选项1:Docker Compose(推荐)**
git clone https://github.com/rosenvladimirov/odoo-claude-mcp.git
cd odoo-claude-mcp
# 配置
cp .env.example .env
nano .env # 设置ODOO_URL、DB、凭据、令牌
# 创建共享的Cloudflare隧道网络(每台主机一次)
docker network create cloudflare-net
# 启动堆栈
docker compose up -d
# 验证
docker compose ps
curl http://localhost:8084/health**选项2:快速安装脚本** **Linux / macOS:**
curl -fsSL https://raw.githubusercontent.com/rosenvladimirov/odoo-claude-mcp/2.0/install.sh | bash**Windows(以管理员身份运行PowerShell):**
iwr -useb https://raw.githubusercontent.com/rosenvladimirov/odoo-claude-mcp/2.0/install.ps1 | iex**连接到Claude Code:**
claude mcp add odoo-mcp \
--url https://your-domain.com/mcp \
--header "Authorization: Bearer YOUR_TOKEN"