MCP Server for Odoo Integration
Project description
Odoo MCP Server
An MCP server implementation for Odoo ERP systems, providing a set of tools for managing Odoo records, models, and custom methods. Inspired by tuanle96/mcp-odoo.
Tools
Core CRUD Operations
-
create_record: Create a single new record
- Inputs:
model_name(string),values(object) - Returns: Dictionary with created record ID
- Inputs:
-
create_records: Create multiple records at once
- Inputs:
model_name(string),values_list(array of objects) - Returns: Dictionary with created record IDs
- Inputs:
-
read_records: Read specific records by their IDs
- Inputs:
model_name(string),ids(array),fields(optional array) - Returns: Dictionary with record data
- Inputs:
-
write_record: Update a single record
- Inputs:
model_name(string),record_id(number),values(object) - Returns: Dictionary with operation result
- Inputs:
-
write_records: Update multiple records
- Inputs:
model_name(string),record_ids(array),values(object) - Returns: Dictionary with operation result
- Inputs:
-
unlink_record: Delete a single record
- Inputs:
model_name(string),record_id(number) - Returns: Dictionary with operation result
- Inputs:
-
unlink_records: Delete multiple records
- Inputs:
model_name(string),record_ids(array) - Returns: Dictionary with operation result
- Inputs:
Search and Query Operations
-
search_records: Search for records with advanced filtering
- Inputs:
model_name(string),domain(array),fields(optional array),limit(optional number),offset(optional number),order(optional string) - Returns: Dictionary with matching records
- Inputs:
-
search_ids: Get only IDs of matching records
- Inputs:
model_name(string),domain(array),offset(optional number),limit(optional number),order(optional string) - Returns: Dictionary with list of IDs
- Inputs:
-
search_count: Count records matching a domain
- Inputs:
model_name(string),domain(array) - Returns: Dictionary with count
- Inputs:
Model Operations
-
search_models: Search for available models in the Odoo system
- Inputs:
query(string) - Search term for model names and display names - Returns: Dictionary with matching models
- Inputs:
-
get_model_info: Get information about a specific model
- Inputs:
model_name(string) - Returns: Dictionary with model information
- Inputs:
-
get_model_fields: Get field definitions for a model
- Inputs:
model_name(string),query_field(string) - Returns: Dictionary with field definitions
- Inputs:
Utility Operations
-
search_and_update: Search and update records in one operation
- Inputs:
model_name(string),domain(array),values(object) - Returns: Dictionary with affected record count and IDs
- Inputs:
-
call_method: Call custom methods on models
- Inputs:
model_name(string),method_name(string),args(optional array),kwargs(optional object) - Returns: Dictionary with method result
- Inputs:
Resources
Model Information
- odoo://models/search/{query}: Search for models by name or description
- odoo://models/{model_name}/info: Information about a specific model
- odoo://models/{model_name}/fields: Field definitions for a specific model
Documentation
- odoo://help/domains: Complete guide to Odoo domain syntax with examples
- odoo://help/operations: Documentation of all available MCP tools and workflows
Configuration
Odoo Connection Setup
To connect to your Odoo instance, set the following environment variables:
ODOO_URL: Your Odoo server URLODOO_DB: Database nameODOO_USERNAME: Login usernameODOO_PASSWORD: Password or API keyODOO_TIMEOUT: Connection timeout in seconds (default: 30)ODOO_VERIFY_SSL: Whether to verify SSL certificates (default: true)LOG_LEVEL: Logging level (default: INFO)
Usage with Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"odoo": {
"command": "uvx",
"args": ["biszx-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"
}
}
}
}
Installation
Python Package
pip install biszx-odoo-mcp
Running the Server
# Using the installed package
biszx-odoo-mcp
# Using uv for development
uv run biszx-odoo-mcp
# Using the MCP development tools
uv run mcp dev src/biszx_odoo_mcp/main.py
License
This MCP server is licensed under the MIT License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file biszx_odoo_mcp-1.3.0.tar.gz.
File metadata
- Download URL: biszx_odoo_mcp-1.3.0.tar.gz
- Upload date:
- Size: 29.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da2a24c3335064a69d8739593329d766907bb3996421a0659ca3d2982e233e70
|
|
| MD5 |
16baec66ecc2bcc4bde3822d7c38898e
|
|
| BLAKE2b-256 |
48023c32b381a3441743aeeed2a7633e6134d375906cef6079e062bf8717f4a6
|
File details
Details for the file biszx_odoo_mcp-1.3.0-py3-none-any.whl.
File metadata
- Download URL: biszx_odoo_mcp-1.3.0-py3-none-any.whl
- Upload date:
- Size: 19.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e76e7f5a2b28554e8a4e361f7eec716ca354a260525605af7fa1a47c258314af
|
|
| MD5 |
96a0da0fc88d9717dfb8a3feee24df09
|
|
| BLAKE2b-256 |
76fa79449da7ef80a9ba2da04a8632d6c43d993311c6b880c4a4a217075a7a7c
|