The Odoo MCP Server Integration is an implementation of the Model Context Protocol (MCP) that enables seamless interaction between AI assistants and Odoo ERP systems. This server provides a bridge for AI tools like Claude to access and manipulate Odoo data, offering a wide range of functionalities from searching records to executing custom methods.
model
, domain
, fields
, limit
model
, id
, fields
model
, values
model
, id
, values
model
, id
model
, method
, args
, kwargs
model
name
, limit
start_date
, end_date
, employee_id
odoo_config.json
:{
"url": "https://your-odoo-instance.com",
"db": "your-database-name",
"username": "your-username",
"password": "your-password-or-api-key"
}
ODOO_URL
ODOO_DB
ODOO_USERNAME
ODOO_PASSWORD
ODOO_TIMEOUT
ODOO_VERIFY_SSL
HTTP_PROXY
Add this to your claude_desktop_config.json
:
{
"mcpServers": {
"odoo": {
"command": "python",
"args": ["-m", "odoo_mcp"],
"env": {
"ODOO_URL": "https://your-odoo-instance.com",
"ODOO_DB": "your-database-name",
"ODOO_USERNAME": "your-username",
"ODOO_PASSWORD": "your-password-or-api-key"
}
}
}
}
{
"mcpServers": {
"odoo": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "ODOO_URL", "-e", "ODOO_DB", "-e", "ODOO_USERNAME", "-e", "ODOO_PASSWORD", "mcp/odoo"],
"env": {
"ODOO_URL": "https://your-odoo-instance.com",
"ODOO_DB": "your-database-name",
"ODOO_USERNAME": "your-username",
"ODOO_PASSWORD": "your-password-or-api-key"
}
}
}
}
pip install odoo-mcp
# Using the installed package
odoo-mcp
# Using the MCP development tools
mcp dev odoo_mcp/server.py
# With additional dependencies
mcp dev odoo_mcp/server.py --with pandas --with numpy
# Mount local code for development
mcp dev odoo_mcp/server.py --with-editable .
docker build -t mcp/odoo:latest -f Dockerfile .
[["is_company", "=", true]]
{"conditions": [{"field": "date_order", "operator": ">=", "value": "2025-03-01"}]}
[["date_order", ">=", "2025-03-01"], ["date_order", "<=", "2025-03-31"]]
["name", "email", "phone"]
.This MCP server is licensed under the MIT License.