mcp-server-odoo vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-odoo by ivnvxd | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 282 | ★ 85,748 |
| 30d uses | — | — |
| Score | 52 | 77 |
| Official | — | ✓ |
| Categories | E-commerceDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-server-odoo · Summary
MCP server enabling AI assistants to securely interact with Odoo ERP systems for data retrieval and manipulation.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-odoo · Use cases
- Automating data entry and retrieval between AI assistants and Odoo ERP systems
- Creating natural language interfaces for Odoo business operations
- Enabling AI assistants to analyze business data stored in Odoo
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
mcp-server-odoo · Install
Installation
Prerequisites
- Python 3.10 or higher
- Access to an Odoo instance
Install UV First
The MCP server runs on your local computer (where Claude Desktop is installed), not on your Odoo server. You need to install UV on your local machine.
Installing via MCP Settings (Recommended)
Add this configuration to your MCP settings:
{
"mcpServers": {
"odoo": {
"command": "uvx",
"args": ["mcp-server-odoo"],
"env": {
"ODOO_URL": "https://your-odoo-instance.com",
"ODOO_API_KEY": "your-api-key-here"
}
}
}
}For Claude Desktop, add to ~/Library/Application Support/Claude/claude_desktop_config.json
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-everything