Odoo MCP Server
Provides read-only access to Odoo databases, enabling discovery of models, field introspection, flexible querying with Odoo domain syntax, record reading by ID, and count operations.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Odoo MCP ServerHow many open opportunities do we have?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Odoo MCP Server
A Model Context Protocol (MCP) server that provides LLMs with read-only access to Odoo databases. This server exposes Odoo models and records through the MCP protocol, allowing AI assistants to query and analyze your Odoo data.
Features
Read-only access to Odoo databases via OdooRPC
Model discovery - List all available Odoo models
Field introspection - Get detailed field information for any model
Flexible querying - Search records with Odoo's domain syntax
Record reading - Fetch specific records by ID
Count operations - Get record counts without fetching data
Environment-based configuration - Secure credential management
MCP compliance - Works with any MCP-compatible client
Related MCP server: MCP Odoo Bridge Server
Installation
Install directly with uvx (recommended):
Odoo MCP Server
A Model Context Protocol (MCP) server that provides LLMs with read-only access to Odoo databases. This server exposes Odoo models and records through the MCP protocol, allowing AI assistants to query and analyze your Odoo data.
Features
Read-only access to Odoo databases via OdooRPC
Model discovery – list all available Odoo models
Field introspection – get detailed field information for any model
Flexible querying – search records with Odoo's domain syntax
Record reading – fetch specific records by ID
Count operations – get record counts without fetching data
Environment-based configuration – secure credential management
MCP compliance – works with any MCP-compatible client
Installation
Install directly with uvx (recommended):
uvx odoorpc-mcpVS Code MCP setup
Create a .vscode/mcp.json in your workspace with:
{
"servers": {
"odoo": {
"type": "stdio",
"command": "uvx",
"args": [
"odoorpc-mcp"
],
"env": {
"ODOO_URL": "${input:odoo_url}",
"ODOO_DB": "${input:odoo_db}",
"ODOO_USERNAME": "${input:odoo_username}",
"ODOO_PASSWORD": "${input:odoo_password}"
}
}
},
"inputs": [
{
"id": "odoo_url",
"type": "promptString",
"description": "Odoo Server URL (e.g., https://your-odoo.com)"
},
{
"id": "odoo_db",
"type": "promptString",
"description": "Odoo Database Name"
},
{
"id": "odoo_username",
"type": "promptString",
"description": "Odoo Username"
},
{
"id": "odoo_password",
"type": "promptString",
"description": "Odoo Password",
"password": true
}
]
}Alternatively, put credentials in a .env file in your workspace:
ODOO_URL=https://your-odoo-instance.com
ODOO_DB=your_database
ODOO_USERNAME=your_username
ODOO_PASSWORD=your_passwordUsage
Show config example:
odoorpc-mcp --config-examplePrint version:
odoorpc-mcp --versionStart the MCP server (requires environment variables):
odoorpc-mcpDevelopment
Build locally:
uv buildRun from source:
PYTHONPATH=src python3 -m odoo_mcp.cli --config-exampleLicense
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Query your org's data in natural language — read-only MCP access to SQL, NoSQL, files & warehouses.
Draxlr's remote MCP server connects AI assistants to your SQL databases and dashboards. Explore schemas, run read-only queries, manage saved queries and dashboards, and export results, all with row-level security so each user sees only their own data.
The HubSpot MCP Server acts as a bridge that enables AI assistants and Large Language Models to securely interact with HubSpot CRM data through natural conversation, without requiring users to understand complex API structures. It provides read-only access to standard CRM objects (contacts, companies, deals, tickets, products, invoices, and more) and their associations, secured via OAuth 2.0, allowing AI agents to perform tasks like summarizing deals, fetching company updates, and looking up record changes.
Let AI agents query data and act across all your business apps via MCP.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to interact with Odoo databases via XML-RPC and JSON-RPC for performing CRUD operations and managing modules. It supports advanced features like domain-based searching, field metadata inspection, and administrative task execution.9 npmMIT
- AlicenseAqualityDmaintenanceEnables AI assistants to interact with Odoo data using natural language to search, read, create, and update records. It acts as a secure bridge between MCP clients and Odoo instances version 17.0 through 19.0.11Apache 2.0
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to fully interact with Odoo ERP instances over XML-RPC, supporting read and write operations on any model without requiring Odoo module installation.4AGPL 3.0
- AlicenseNot gradedqualityDmaintenanceA read-only MCP server that enables AI assistants to query Odoo instances via XML-RPC, supporting search, read, count, and field inspection without requiring custom modules.1Mozilla Public 2.0