A modern bridge system for interacting with Odoo ERP systems through MCP (Model Context Protocol).
Odoo mcp mcp server lets Claude, Cursor and other MCP clients work with Odoo MCP directly. A modern bridge system for interacting with Odoo ERP systems through MCP (Model Context Protocol).
A modern bridge system for interacting with Odoo ERP systems through MCP (Model Context Protocol).
Once connected, the assistant can call these 5 tools directly:
execute_method — Execute a custom method on an Odoo modelInputs — - model (string): The model name (e.g., 'res.partner')Returns — Dictionary with the method result and success indicatorsearch_employee — Search for employees by namesearch_holidays — Searches for holidays within a specified date rangeThe server is distributed via PyPI as odoo-mcp, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.
Before the server will start you need to supply 4 environment variables: ODOO_URL, ODOO_DB, ODOO_USERNAME, ODOO_PASSWORD. Keep credentials in your client's env block or a secrets manager rather than committing them.
Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Odoo MCP sits in that group, and the shape of its toolset — execute_method, Inputs, Returns among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| Tool | What it does |
|---|---|
| execute_method | Execute a custom method on an Odoo model |
| Inputs | - model (string): The model name (e.g., 'res.partner') |
| Returns | Dictionary with the method result and success indicator |
| search_employee | Search for employees by name |
| search_holidays | Searches for holidays within a specified date range |
{
"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"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| ODOO_URL | Endpoint or connection string the server talks to. | Yes |
| ODOO_DB | Configuration value read at startup. | Optional |
| ODOO_USERNAME | Configuration value read at startup. | Optional |
| ODOO_PASSWORD | Configuration value read at startup. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.