everything vs odoo-mcp-pro
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | odoo-mcp-pro by pantalytics | |
|---|---|---|
| Stars | ★ 85,748 | ★ 38 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsE-commerce |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
odoo-mcp-pro · Summary
MCP server connecting AI tools to Odoo ERP for natural language data queries and management.
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-mcp-pro · Use cases
- Find and analyze sales data using natural language queries
- Create and update business records through AI assistants
- Integrate AI tools with Odoo for automated data management workflows
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-mcp-pro · Install
Hosted (Recommended)
- Sign up at [pantalytics.com](https://pantalytics.com/en/apps/odoo-mcp-server)
- Enter your Odoo URL and API key
- Add the MCP server to your AI tool
Self-hosted
pip install "mcp-server-odoo @ git+https://github.com/pantalytics/odoo-mcp-pro.git"
ODOO_URL=https://mycompany.odoo.com ODOO_API_KEY=your_key python -m mcp_server_odooClaude Desktop Configuration
{
"mcpServers": {
"odoo": {
"command": "python",
"args": ["-m", "mcp_server_odoo"],
"env": {
"ODOO_URL": "https://mycompany.odoo.com",
"ODOO_API_KEY": "your_api_key_here"
}
}
}
}