OPEN SOURCE MCP

A tool count is not a security model.

The “best” Odoo MCP server depends on where it runs, which Odoo version it speaks, and what happens before a write. This comparison checks active GitHub projects against those questions. It does not award points for saying “enterprise-grade” in a README.

Open-source Odoo MCP servers compared by deployment, transport, permissions and write controls

Short answer: there is no universal winner. Choose an external gateway for Odoo Online or zero-addon deployment. Choose an in-Odoo module when direct ORM access and a single remote endpoint matter. Choose a managed service when OAuth, updates, and uptime are work you do not want to own.

Repositories and public documentation were checked on 26 August 2026. Fast-moving projects can change after publication. Verify the release, license, and security controls yourself.

Method

Seven questions, in this order

  1. Can it run where your Odoo runs? Odoo Online does not accept arbitrary server addons.
  2. Which Odoo API does it use? Odoo 19’s current external API is JSON-2; XML-RPC and JSON-RPC are deprecated.
  3. Whose identity reaches Odoo? One shared administrator key is not per-user authorization.
  4. Can administrators limit models, fields, methods, and record counts?
  5. What gates a write? Allowlist, dry run, confirmation, or nothing?
  6. What gets logged? User, tool, model, record, arguments, result, and denial?
  7. Is it maintained? Releases, issues, tests, and a clear license beat a large README.
Projects

Open-source Odoo MCP projects worth evaluating

Open-source Odoo MCP server comparison, August 2026
ProjectShapePublished positioningBest evaluation fit
pantalytics/odoo-mcp-proExternal gateway; self-hosted or managedOdoo 14–19+, JSON-2 on 19+, XML-RPC on older versionsOdoo Online and teams that may prefer managed OAuth
ivnvxd/mcp-server-odooExternal Python server; optional Odoo module for tighter controlsGeneric CRUD, aggregation, field inspection, paginationDevelopers wanting a broad, inspectable server surface
parth-unjiya/odoo-mcp-gatewayExternal gateway, YAML policy, no Odoo-side addonOdoo 17/18/19, RBAC, field restrictions, rate limits, audit logsSecurity-policy-first external deployment
keboola/odoo-mcpExternal server with remote HTTP and stdio modesOdoo 18, per-user OAuth 2.1, employee self-service toolsNarrow HR workflows with user identity
tuanle96/mcp-odooLocal/self-hosted server; related managed serviceBroad tool and prompt surface, multi-instance options, gated writesPower users prepared to review and constrain a large surface

This table reports what each project publishes; it is not an independent penetration test. Start from the curated Awesome Odoo MCP list to discover more projects, then inspect the actual code and releases.

Deployment

External gateway or module inside Odoo?

External gateway

The server runs beside the AI client or on your infrastructure and calls Odoo through an external API. This is the practical shape for Odoo Online because you cannot install arbitrary backend addons there. It also isolates MCP dependencies from the Odoo worker and can serve multiple databases.

The trade-off is another service carrying Odoo credentials. Confirm encryption at rest, tenant isolation, egress controls, key rotation, and whether every user shares one Odoo identity.

In-Odoo module

The module exposes an MCP endpoint from Odoo and uses the ORM directly. That avoids an extra RPC hop and can enforce Odoo ACLs and record rules naturally. It requires Odoo.sh or self-hosting with permission to install the addon, plus careful reverse-proxy, dependency, and worker management.

Managed gateway

A managed service removes server operations but adds a vendor trust boundary. Ask where credentials are stored, how OAuth users map to Odoo users, how data is retained, and how you export logs or leave.

Versions

Odoo 19 changes the API decision

Odoo’s official Odoo 19 documentation describes JSON-2 at /json/2/{model}/{method}, bearer API keys, and a maximum key duration of three months. It also marks XML-RPC and JSON-RPC for removal in Odoo 22.

An Odoo MCP server that supports 17–19 may legitimately use XML-RPC on 17/18 and JSON-2 on 19. What matters is whether the adapter is explicit and tested. “Supports all Odoo versions” without a protocol matrix is not evidence.

Writes

Search tools are easy. Safe posting is the product.

Read-only tools should be the default. If you need writes, prefer a sequence: propose the intended change, validate access and field values, show the diff, require a user-bound confirmation, execute once, and log the outcome. A free-form execute_method tool can bypass a carefully named CRUD surface; expose it only through a strict method allowlist.

Odoo’s ACLs and record rules remain essential, but they are not the whole policy. A user may be allowed to edit an invoice in the UI while an unattended agent should only create a draft activity. MCP needs a narrower boundary than the human account it represents.

Decision

Pick by scenario, not stars

Choosing an Odoo MCP server by deployment scenario
Your situationStart by evaluating
Odoo OnlineExternal or managed gateways; no in-Odoo addon
One self-hosted database, internal usersIn-Odoo module or tightly scoped external gateway
Several databases or versionsVersion-aware external gateway with explicit tenant isolation
Employee self-servicePer-user OAuth and domain-specific tools, not generic admin CRUD
Unattended automationRead-only or propose/confirm writes, quotas, audit, and kill switch

Run every candidate against the same test: a low-privilege user, two companies, one forbidden model, one forbidden record, one attempted write, one oversized query, and one revoked credential. The failure behavior tells you more than the demo.

Sources

Repository and protocol sources

Questions

FAQ

Is there an official Odoo MCP server on GitHub?

The public ecosystem compared here is community- and vendor-maintained. Check Odoo’s current release documentation separately; do not infer official status from a project name.

Which Odoo MCP server works with Odoo Online?

Use an external or managed gateway that calls Odoo’s available external API. Odoo Online does not allow arbitrary backend addons.

Should an Odoo MCP server expose write tools?

Start read-only. Add narrowly scoped writes only with least-privilege Odoo permissions, allowlists, confirmation where appropriate, quotas, and audit logs.

Test the denial path, not just the happy path.

The right MCP server is the one that safely says no.