MCP Server for Odoo XML-RPC integration
Xml rpc odoo mcp mcp server lets Claude, Cursor and other MCP clients work with Xml Rpc Odoo MCP directly. MCP Server for Odoo XML-RPC integration.
A Model Context Protocol (MCP) server that provides tools for interacting with Odoo via XML-RPC.
Once connected, the assistant can call these 11 tools directly:
Development — For development, you can run directly with tsx: bash npm run dev -- --project your_project --environment your_envodoo_search — Search for records in an Odoo model. json { "model": "res.partner", "domain": [["is_company", "=", true]], "limit": 10 }odoo_read — Read specific records by ID. json { "model": "res.partner", "ids": [1, 2, 3], "fields": ["name", "email", "phone"] }odoo_create — Create a new record. json { "model": "res.partner", "values": { "name": "New Company", "is_company": true, "email": "info@newcompany.com" } }odoo_write — Update existing records. json { "model": "res.partner", "ids": [123], "values": { "phone": "+1-555-0123" } }odoo_unlink — Delete records. json { "model": "res.partner", "ids": [456] }odoo_search_count — Count records matching a domain. json { "model": "res.partner", "domain": [["is_company", "=", true]] }odoo_fields_get — Get field definitions for a model. json { "model": "res.partner", "fields": ["name", "email"] }odoo_search_read — Search and read in one operation. json { "model": "res.partner", "domain": [["is_company", "=", true]], "fields": ["name", "email"], "limit": 5 }Requirements — The Requirements tool exposed by this serverBuilding — The Building tool exposed by this serverSetup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.
Before the server will start you need to supply 4 environment variables: ODOO_URL, ODOO_DATABASE, ODOO_USERNAME, ODOO_PASSWORD. Keep credentials in your client's env block or a secrets manager rather than committing them.
Communication servers earn their keep on volume — summarising channels and threads that would otherwise cost you an hour of scrollback. Xml Rpc Odoo MCP sits in that group, and the shape of its toolset — Development, odoo_search, odoo_read among others — tells you what it is really for. Worth comparing against the other communication 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 |
|---|---|
| Development | For development, you can run directly with tsx: bash npm run dev -- --project your_project --environment your_env |
| odoo_search | Search for records in an Odoo model. json { "model": "res.partner", "domain": [["is_company", "=", true]], "limit": 10 } |
| odoo_read | Read specific records by ID. json { "model": "res.partner", "ids": [1, 2, 3], "fields": ["name", "email", "phone"] } |
| odoo_create | Create a new record. json { "model": "res.partner", "values": { "name": "New Company", "is_company": true, "email": "info@newcompany.com" } } |
| odoo_write | Update existing records. json { "model": "res.partner", "ids": [123], "values": { "phone": "+1-555-0123" } } |
| odoo_unlink | Delete records. json { "model": "res.partner", "ids": [456] } |
| odoo_search_count | Count records matching a domain. json { "model": "res.partner", "domain": [["is_company", "=", true]] } |
| odoo_fields_get | Get field definitions for a model. json { "model": "res.partner", "fields": ["name", "email"] } |
| odoo_search_read | Search and read in one operation. json { "model": "res.partner", "domain": [["is_company", "=", true]], "fields": ["name", "email"], "limit": 5 } |
| Requirements | The Requirements tool exposed by this server. |
| Building | The Building tool exposed by this server. |
| Variable | Description | Required |
|---|---|---|
| ODOO_URL | Endpoint or connection string the server talks to. | Yes |
| ODOO_DATABASE | Configuration value read at startup. | Optional |
| ODOO_USERNAME | Configuration value read at startup. | Optional |
| ODOO_PASSWORD | Configuration value read at startup. | Optional |
Your assistant inside the workspace — read channels, search history, post messages and tame the noise.
Inbox intelligence — search, read, draft and send Gmail through your assistant with OAuth auto-setup.
Read and write Jira, Confluence, Bitbucket, JSM and Compass from your AI client — with your own permissions.
Read and send Telegram messages through your assistant — chats, channels and history via the client API.
Enables Discord bot integration with Model Context Protocol (MCP) compatible applications like Claude Desktop.
Exposes REST APIs defined by OpenAPI specifications as Model Context Protocol (MCP) tools, facilitating seamless integration into MCP-based workflows.