odoo-mcp-server
Provides tools for interacting with Odoo ERP, including product management, customer management, order processing, invoice generation, and payment processing.
Click on "Install 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-servershow me the list of products in the catalog"
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
The Odoo MCP Server is a robust and efficient implementation of the Model Context Protocol (MCP) designed to interact seamlessly with Odoo ERP systems. This server provides tools and resources to facilitate integration, automation, and enhanced functionality for Odoo-based workflows.
🚀 Features
Product Management: Retrieve product catalogs, search products, and get detailed product information
Customer Management: List, search, and create customers/partners with full contact details
Order Processing: Create sales orders with multi-step workflows and retrieve order details
Invoice Generation: Automatically create and post invoices from sales orders
Payment Processing: Handle payment registration and processing workflows
Multi-language Support: Support for English, Arabic, French, and Spanish product names
Configurable Timezone: Set your preferred timezone via environment variable
Structured Logging: Configurable log levels for debugging and monitoring
Secure Authentication: XML-RPC based authentication with Odoo instances
Related MCP server: MCP Server for Odoo
🏗️ Architecture
The project follows a modular architecture with clear separation of concerns:
odoo-mcp-server/
├── src/mcpserver/
│ ├── __init__.py # Package initialization
│ ├── __main__.py # Application entry point
│ ├── config.py # Configuration management and validation
│ ├── deployment.py # MCP server deployment setup
│ ├── odoo_mcp_server.py # Core server implementation
│ └── tools.py # MCP tools and Odoo operations
├── pyproject.toml # Project configuration and dependencies
├── .python-version # Python version specification
└── README.md # Project documentationCore Components
OdooMCPServer: Main server class handling Odoo connections and tool registration
OdooConfig: Configuration management with environment variable validation
OdooTools: Collection of MCP tools for Odoo operations
FastMCP: MCP server framework integration
📋 Prerequisites
Python 3.12 or higher
Access to an Odoo instance (v17+ recommended)
Valid Odoo user credentials with appropriate permissions
🛠️ Installation
1. Install UV
The MCP server runs on your local computer (where Claude Desktop is installed), not on your Odoo server. You need to install UV on your local machine:
curl -LsSf https://astral.sh/uv/install.sh | shpowershell -c "irm https://astral.sh/uv/install.ps1 | iex"After installation, restart your terminal to ensure UV is in your PATH.
2. Clone the Repository
git clone git@github.com:sameeroz/odoo-mcp-server.git
cd odoo-mcp-server3. Install Dependencies
Using uv:
uv sync4. Installing via MCP Settings
Add this configuration to your MCP settings:
Using API Key (preferred):
{
"mcpServers": {
"odoo": {
"command": "uv",
"args": ["run", "src/mcpserver/__main__.py"],
"env": {
"ODOO_URL": "https://your-odoo-instance.com",
"ODOO_DATABASE": "your-database-name-here",
"ODOO_API_KEY": "your-api-key-here",
"ODOO_USERNAME": "your-username-here"
}
}
}
}Using Username/Password:
{
"mcpServers": {
"odoo": {
"command": "uv",
"args": ["run", "src/mcpserver/__main__.py"],
"env": {
"ODOO_URL": "https://your-odoo-instance.com",
"ODOO_DATABASE": "your-database-name-here",
"ODOO_USERNAME": "your-username-here",
"ODOO_PASSWORD": "your-password-here"
}
}
}
}Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"odoo": {
"command": "uv",
"args": ["run", "src/mcpserver/__main__.py"],
"env": {
"ODOO_URL": "https://your-odoo-instance.com",
"ODOO_USERNAME": "your-username-here",
"ODOO_PASSWORD": "your-password-here",
"ODOO_DATABASE": "your-database-name-here"
}
}
}
}Add to ~/.cursor/mcp_settings.json:
{
"mcpServers": {
"odoo": {
"command": "uv",
"args": ["run", "src/mcpserver/__main__.py"],
"env": {
"ODOO_URL": "https://your-odoo-instance.com",
"ODOO_USERNAME": "your-username-here",
"ODOO_PASSWORD": "your-password-here",
"ODOO_DATABASE": "your-database-name-here"
}
}
}
}Add to your VS Code settings (~/.vscode/mcp_settings.json or workspace settings):
{
"github.copilot.chat.mcpServers": {
"odoo": {
"command": "uv",
"args": ["run", "src/mcpserver/__main__.py"],
"env": {
"ODOO_URL": "https://your-odoo-instance.com",
"ODOO_USERNAME": "your-username-here",
"ODOO_PASSWORD": "your-password-here",
"ODOO_DATABASE": "your-database-name-here"
}
}
}
}Add to ~/.config/zed/settings.json:
{
"context_servers": {
"odoo": {
"command": "uv",
"args": ["run", "src/mcpserver/__main__.py"],
"env": {
"ODOO_URL": "https://your-odoo-instance.com",
"ODOO_USERNAME": "your-username-here",
"ODOO_PASSWORD": "your-password-here",
"ODOO_DATABASE": "your-database-name-here"
}
}
}
}🚀 Usage
Available MCP Tools
1. Product Operations
get_products
Retrieve product catalog with optional language and limit parameters
Supports: English (en), Arabic (ar), French (fr), Spanish (es)
get_product_details
Get detailed information for a specific product by name
Returns: name, price, description
2. Customer Management
get_customers
Retrieve a paginated list of customers/partners
Parameters: limit, offset
Returns: customer list with contact details and total count
search_customers
Search for customers by name, email, phone, or all fields
Parameters: query, search_by ('name'|'email'|'phone'|'all'), limit
create_customer
Create a new customer/partner with full contact details
Parameters: name, email, phone, mobile, street, city, country, is_company
Includes duplicate detection
3. Order Management
get_order_details
Retrieve sales order information with customizable fields
Supports filtering by order IDs and field selection
create_order
Create new sales orders with automatic invoice and payment processing
Parameters: customer_name, product_id, create_invoice, finish_payment
Example Usage in MCP Client
# Get products in Arabic
products = await mcp_client.call_tool("get_products", {
"product_names_lang": "ar",
"limits": 10
})
# Search for customers
customers = await mcp_client.call_tool("search_customers", {
"query": "John",
"search_by": "all",
"limit": 5
})
# Create a customer
result = await mcp_client.call_tool("create_customer", {
"name": "Acme Corp",
"email": "contact@acme.com",
"phone": "+1234567890",
"country": "United States",
"is_company": True
})
# Create an order with invoice and payment
result = await mcp_client.call_tool("create_order", {
"customer_name": "John Doe",
"product_id": 123,
"create_invoice": True,
"finish_payment": True
})⚙️ Configuration
Environment Variables
Variable | Description | Required | Default | Example |
| Odoo instance URL | Yes |
| |
| Database name | Yes |
| |
| Odoo API key (preferred) | If no password |
| |
| Odoo username | Yes (for API key & password) |
| |
| Odoo password | If no API key |
| |
| Timezone for dates | No |
|
|
| Logging level | No |
|
|
Validation Rules
URL must start with
http://orhttps://All environment variables are required
Connection timeout: 30 seconds
🔧 Development
Key Classes
OdooMCPServer: Main server orchestratorOdooConfig: Configuration management with validationOdooTools: MCP tool implementationsConfigValidationError: Custom exception for configuration errors
Adding New Tools
To add new MCP tools:
Add the tool method to the
OdooToolsclass intools.pyUse the
@self.mcp.tool()decoratorInclude proper type hints and docstrings
🔒 Security Considerations
Credentials: Store sensitive information in environment variables
Validation: All inputs are validated before processing
Error Handling: Sensitive information is not exposed in error messages
Timeouts: Connection timeouts prevent hanging requests
Permissions: Ensure Odoo user has minimal required permissions
🤝 Contributing
Fork the repository
Create a feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a Pull Request
Development Guidelines
Follow PEP 8 style guidelines
Add type hints to all functions
Include comprehensive docstrings
Write tests for new functionality
Update documentation as needed
📝 License
This project is licensed under the MIT License - see the LICENSE file for details.
🆘 Support
Issues: Report bugs and feature requests via GitHub Issues
Community: Join discussions in the project's GitHub Discussions
🔗 Related Projects
Model Context Protocol - The underlying protocol specification
Odoo - The ERP system this server integrates with
FastMCP - The MCP server framework used
📊 Changelog
v0.2.0 (Current)
Added customer/partner management tools (get, search, create)
Added configurable timezone via
ODOO_TIMEZONEenv varAdded configurable logging via
ODOO_LOG_LEVELenv varReplaced
print()with structured Python loggingFixed order creation flow (order lines now created before confirmation)
Fixed product ID validation (uses
=instead ofilike)Fixed exception handling in connection module
Fixed domain format in order search
Added proper type annotations to all tool parameters
Added
python-dotenvto dependencies
v0.1.0
Initial release
Basic product and order management tools
Invoice and payment processing
Multi-language support
Made with ❤️ by Sameeroz for the MCP and Odoo communities
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sameeroz/odoo-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server