Odoo MCP Unified Server
Enables interaction with Odoo ERP systems through 17+ business tools covering sales, purchasing, inventory, and accounting operations. Supports both Claude Desktop integration and web deployment with dual transport modes.
README
Odoo MCP Unified Server š
Unified Odoo Model Context Protocol (MCP) Server with dual transport support (stdio + SSE), enhanced business tools, and type-safe configuration management.
⨠Features
š Dual Transport Support
- stdio: For Claude Desktop integration
- SSE: For web deployment (Zeabur, Railway, etc.) - No Supergateway needed!
š ļø Complete Tool Set (17+ Tools)
Core Tools (3)
execute_method- Execute any Odoo method (most powerful)search_employee- Search for employeessearch_holidays- Search for holidays/time-off
Sales Tools (3)
search_sales_orders- Search sales orderscreate_sales_order- Create new sales orderanalyze_sales_performance- Analyze sales performance with trends
Purchase Tools (3)
search_purchase_orders- Search purchase orderscreate_purchase_order- Create new purchase orderanalyze_supplier_performance- Analyze supplier on-time delivery
Inventory Tools (2)
get_stock_levels- Get current stock levelspredict_stock_needs- Predict future stock needs
Accounting Tools (2)
get_financial_summary- Get financial overviewanalyze_receivables- Analyze accounts receivable
š¦ Resources (4)
odoo://models- List all available modelsodoo://model/{model_name}- Get model informationodoo://record/{model_name}/{record_id}- Get specific recordodoo://search/{model_name}/{domain}- Search records
āļø Configuration Management
- Type-safe configuration with Pydantic
- Support for environment variables and JSON config
- Validation on startup
š Quick Start
For Claude Desktop (stdio mode)
- Install
cd E:\gitHub\odoo-mcp-unified
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
pip install -e .
- Configure - Add to Claude Desktop config (
%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"odoo-unified": {
"command": "E:\\gitHub\\odoo-mcp-unified\\venv\\Scripts\\python.exe",
"args": ["E:\\gitHub\\odoo-mcp-unified\\run_server.py"],
"env": {
"ODOO_URL": "https://alpha-goods-corporation.odoo.com",
"ODOO_DB": "alpha-goods-corporation",
"ODOO_USERNAME": "your-username",
"ODOO_PASSWORD": "your-password",
"MCP_TRANSPORT": "stdio"
}
}
}
}
- Restart Claude Desktop
For Zeabur Deployment (SSE mode)
-
Connect GitHub repo to Zeabur
-
Set environment variables:
ODOO_URL=https://your-company.odoo.com
ODOO_DB=your-database
ODOO_USERNAME=your-username
ODOO_PASSWORD=your-password
MCP_TRANSPORT=sse
PORT=8000
- Deploy - Zeabur will automatically:
- Build using Dockerfile
- Expose SSE endpoint at
/sse - No Supergateway needed!
š Environment Variables
Required
ODOO_URL- Odoo instance URLODOO_DB- Database nameODOO_USERNAME- UsernameODOO_PASSWORD- Password
Optional
MCP_TRANSPORT- Transport mode:stdioorsse(default:stdio)ODOO_TIMEOUT- Request timeout in seconds (default:60)ODOO_VERIFY_SSL- Verify SSL certificates (default:false)PORT- Server port for SSE mode (default:8000)HOST- Server host for SSE mode (default:0.0.0.0)LOG_LEVEL- Logging level (default:INFO)
š Usage Examples
Execute Any Odoo Method
# Get product.product records
execute_method(
model="product.product",
method="search_read",
args=[],
kwargs={"fields": ["name", "list_price"], "limit": 10}
)
Analyze Sales Performance
analyze_sales_performance(
params={
"start_date": "2024-01-01",
"end_date": "2024-12-31",
"group_by": "month"
}
)
Check Supplier Performance
analyze_supplier_performance(
params={
"supplier_id": 123,
"start_date": "2024-01-01",
"end_date": "2024-12-31"
}
)
šļø Project Structure
odoo-mcp-unified/
āāā src/odoo_mcp/
ā āāā __init__.py
ā āāā __main__.py
ā āāā server.py # Main MCP server
ā āāā config.py # š Configuration management
ā āāā odoo_client.py # Odoo XML-RPC client
ā āāā extensions.py # Extension registration
ā āāā models.py # Pydantic models
ā āāā prompts.py # MCP prompts
ā āāā resources.py # MCP resources
ā āāā tools_sales.py # Sales tools
ā āāā tools_purchase.py # Purchase tools
ā āāā tools_inventory.py # Inventory tools
ā āāā tools_accounting.py # Accounting tools
āāā run_server.py # š Unified server runner (stdio + SSE)
āāā requirements.txt # Fixed FastMCP version
āāā pyproject.toml
āāā Dockerfile # š Zeabur-ready
āāā README.md
š§ Development
Run Tests
pytest tests/
Run Server Locally (stdio)
export ODOO_URL=https://your-company.odoo.com
export ODOO_DB=your-database
export ODOO_USERNAME=your-username
export ODOO_PASSWORD=your-password
python run_server.py
Run Server Locally (SSE)
export MCP_TRANSPORT=sse
export PORT=8000
python run_server.py
# Access: http://localhost:8000/sse
š Troubleshooting
ā Using Latest Stable Versions
This project uses the latest stable versions of FastMCP (>=0.7.0) and MCP (>=1.0.0):
- Modern FastMCP API without deprecated parameters
- Enhanced performance and stability
- Latest features and improvements
SSL Certificate Error
If you see SSL errors:
export ODOO_VERIFY_SSL=false
Connection Timeout
Increase timeout:
export ODOO_TIMEOUT=120
š¦ What's New in v2.0
š Compared to odoo-mcp-improved
- ā SSE Transport support (Zeabur deployment without Supergateway)
- ā Unified config.py module (type-safe configuration)
- ā Dual transport mode in single codebase
- ā Enhanced documentation
š Compared to mcp-odoo
- ā All basic features (execute_method, resources)
- ā 12+ additional business tools
- ā Extension system
- ā SSE support
- ā Better error handling
š License
MIT License
š¤ Contributing
Contributions welcome! Please open an issue or PR.
š Links
Made with ā¤ļø for Alpha Goods Corporation
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
E2B
Using MCP to run code via e2b.