everything vs odoo-claude-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | odoo-claude-mcp by rosenvladimirov | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsE-commerceOps & Infra |
| Language | TypeScript | HTML |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
odoo-claude-mcp · Summary
Production-grade MCP server connecting Claude to Odoo 15-19 with 197+ tools, multi-tenant support, and Bulgaria localization.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
odoo-claude-mcp · Use cases
- Odoo developers can perform live module development with Claude assisting directly on their running instance
- Business users can ask natural language queries about sales data and get real-time insights from Odoo records
- Platform operators can host multi-tenant environments with isolated MCP endpoints for each client
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingodoo-claude-mcp · Install
Installation Options
**Option 1: Docker Compose (Recommended)**
git clone https://github.com/rosenvladimirov/odoo-claude-mcp.git
cd odoo-claude-mcp
# Configure
cp .env.example .env
nano .env # set ODOO_URL, DB, credentials, tokens
# Create the shared Cloudflare tunnel network (one-time per host)
docker network create cloudflare-net
# Start the stack
docker compose up -d
# Verify
docker compose ps
curl http://localhost:8084/health**Option 2: Quick installer script** **Linux / macOS:**
curl -fsSL https://raw.githubusercontent.com/rosenvladimirov/odoo-claude-mcp/2.0/install.sh | bash**Windows (PowerShell as Administrator):**
iwr -useb https://raw.githubusercontent.com/rosenvladimirov/odoo-claude-mcp/2.0/install.ps1 | iex**Connect to Claude Code:**
claude mcp add odoo-mcp \
--url https://your-domain.com/mcp \
--header "Authorization: Bearer YOUR_TOKEN"