everything vs mcp-odoo
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-odoo by tuanle96 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 316 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsOps & InfraProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-odoo · Summary
MCP Server for Odoo that provides 24 tools, prompts, and safe write workflows without Odoo-side setup.
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-odoo · Use cases
- Integrating AI assistants with Odoo to query customer data and invoice status
- Automating Odoo data analysis and reporting without direct database access
- Performing safe data operations through approval workflow in automation tools
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-everythingmcp-odoo · Install
Install
The fastest path is using uvx, which fetches the package on demand:
uvx odoo-mcp --healthOr install into your environment:
pip install odoo-mcp
# or: pipx install odoo-mcpFor local development:
git clone https://github.com/tuanle96/mcp-odoo.git
cd mcp-odoo
uv sync --extra devConfigure
Set connection values in the environment:
export ODOO_URL="https://your-odoo-instance.com"
export ODOO_DB="your-database"
export ODOO_USERNAME="your-user"
export ODOO_PASSWORD="your-password-or-api-key"
export ODOO_TRANSPORT="xmlrpc"Run
Start the MCP server over stdio:
odoo-mcpClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"odoo": {
"command": "odoo-mcp",
"args": []
}
}
}