Skip to main content
Glama
heimerle

Odoo MCP Server

by heimerle

Odoo MCP Server

A professional Model Context Protocol (MCP) server for seamless Odoo ERP integration. Supports both HTTP and STDIO transports for maximum flexibility.

npm version License: MIT

๐Ÿš€ Features

๐ŸŒ Dual Transport Support

  • HTTP Mode: REST API with Express.js for web applications and remote access

  • STDIO Mode: Direct stdin/stdout communication for Claude Desktop and local AI assistants

๐Ÿ”ง Complete Odoo Integration

  • Authentication: Automatic login with environment variables or manual connect

  • CRUD Operations: Full Create, Read, Update, Delete on any Odoo model

  • Advanced Search: Complex domain filtering with Odoo's powerful search syntax

  • Method Calls: Execute any custom method on Odoo models

  • Multi-Protocol: XML-RPC and JSON-RPC support

๐Ÿ—๏ธ Professional Architecture

  • TypeScript: Full type safety and modern ES modules

  • MCP Protocol: Compliant with Model Context Protocol 2024-11-05

  • Error Handling: Comprehensive error handling and logging

  • Modular Design: Clean separation of concerns

  • Production Ready: Battle-tested with real Odoo deployments

Related MCP server: Odoo MCP Server

๐Ÿ“ฆ Installation

npm install -g @mweinheimer/odoo-mcp-server

From Source

git clone https://github.com/heimerle/odoo-mcp-server.git
cd odoo-mcp-server
npm install
npm run build

โš™๏ธ Configuration

Environment Variables

Create a .env.local file or set these environment variables:

# Odoo Connection (Required)
ODOO_URL=http://your-odoo-instance:8069
ODOO_DB=your_database            # or ODOO_DATABASE
ODOO_USERNAME=your_username
ODOO_PASSWORD=your_password

# Transport Mode
MCP_TRANSPORT=stdio              # 'http' or 'stdio' (default: http)

# Odoo Protocol
ODOO_TRANSPORT=jsonrpc           # 'jsonrpc' or 'xmlrpc' (default: jsonrpc)

# HTTP Mode Settings (only for MCP_TRANSPORT=http)
MCP_HTTP_PORT=3001               # HTTP server port (default: 3001)

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "odoo": {
      "command": "node",
      "args": [
        "/path/to/odoo-mcp-server/dist/stdio-server.js"
      ],
      "env": {
        "ODOO_URL": "http://your-odoo:8069",
        "ODOO_DB": "your_database",
        "ODOO_USERNAME": "your_username",
        "ODOO_PASSWORD": "your_password"
      }
    }
  }
}

Or use the global installation:

{
  "mcpServers": {
    "odoo": {
      "command": "odoo-mcp-server",
      "args": ["--stdio"],
      "env": {
        "ODOO_URL": "http://your-odoo:8069",
        "ODOO_DB": "your_database",
        "ODOO_USERNAME": "your_username",
        "ODOO_PASSWORD": "your_password",
        "MCP_TRANSPORT": "stdio"
      }
    }
  }
}

๐Ÿš€ Quick Start

HTTP Mode

# Using environment variables
ODOO_URL=http://localhost:8069 \
ODOO_DB=mydb \
ODOO_USERNAME=admin \
ODOO_PASSWORD=admin \
MCP_TRANSPORT=http \
node dist/http-mcp-server.js

# Server starts on http://localhost:3001

STDIO Mode (Claude Desktop)

# Using the dedicated STDIO entry point
ODOO_URL=http://localhost:8069 \
ODOO_DB=mydb \
ODOO_USERNAME=admin \
ODOO_PASSWORD=admin \
node dist/stdio-server.js

๐Ÿ”ง Available Tools

The server provides 13 MCP tools for Odoo interaction:

  1. odoo_ping - Test Odoo connection and get server info

  2. odoo_connect - Manual login to Odoo (when auto-login is not configured)

  3. odoo_search_read - Search and read records with domain filters

  4. odoo_create - Create new records in any model

  5. odoo_write - Update existing records

  6. odoo_unlink - Delete records

  7. odoo_call_method - Execute custom methods on models

  8. odoo_get_fields - Get field definitions for a model

  9. odoo_read - Read specific records by ID

  10. odoo_search - Search for record IDs

  11. odoo_search_count - Count records matching criteria

  12. odoo_name_get - Get display names for records

  13. odoo_name_search - Search records by name

๐Ÿ“š Usage Examples

Example 1: Search Customers (HTTP)

curl -X POST http://localhost:3001/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
      "name": "odoo_search_read",
      "arguments": {
        "model": "res.partner",
        "domain": [["is_company", "=", true]],
        "fields": ["name", "email", "phone"],
        "limit": 10
      }
    },
    "id": 1
  }'

Example 2: Create Contact (Claude Desktop - STDIO)

Simply ask Claude:

"Create a new contact in Odoo with name 'John Doe', email 'john@example.com'"

Claude will use the odoo_create tool automatically.

Example 3: Update Record

curl -X POST http://localhost:3001/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
      "name": "odoo_write",
      "arguments": {
        "model": "res.partner",
        "ids": [42],
        "values": {
          "phone": "+1234567890"
        }
      }
    },
    "id": 1
  }'

๐Ÿงช Development

Build from Source

git clone https://github.com/heimerle/odoo-mcp-server.git
cd odoo-mcp-server
npm install
npm run build

Development Mode

npm run dev      # Watch mode with auto-recompile
npm run lint     # Run ESLint
npm run test     # Run tests

Project Structure

src/
โ”œโ”€โ”€ http-mcp-server.ts      # Main HTTP/STDIO server
โ”œโ”€โ”€ stdio-server.ts         # Dedicated STDIO entry point
โ”œโ”€โ”€ models/
โ”‚   โ”œโ”€โ”€ odoo-client.ts     # Odoo API client
โ”‚   โ””โ”€โ”€ odoo-tools.ts      # MCP tool definitions
โ”œโ”€โ”€ utils/
โ”‚   โ””โ”€โ”€ odoo-sanitizer.ts  # Response sanitization
โ””โ”€โ”€ types/
    โ””โ”€โ”€ index.ts           # TypeScript type definitions

๐Ÿ“– Documentation

๐Ÿ› Troubleshooting

STDIO Mode: "Not connected to Odoo"

Make sure you're using the correct environment variable names:

  • Use ODOO_DB or ODOO_DATABASE (both work)

  • All credentials must be provided for auto-login

HTTP Mode: Port Already in Use

# Check what's using port 3001
lsof -i :3001

# Kill the process
pkill -f "node.*http-mcp-server"

# Or use a different port
MCP_HTTP_PORT=3002 node dist/http-mcp-server.js

Connection Refused

Check that your Odoo instance is accessible:

curl http://your-odoo-instance:8069/web/database/selector

๐Ÿค Contributing

Contributions are welcome! Please:

  1. Fork the repository

  2. Create a feature branch (git checkout -b feature/amazing-feature)

  3. Commit your changes (git commit -m 'Add amazing feature')

  4. Push to the branch (git push origin feature/amazing-feature)

  5. Open a Pull Request

๐Ÿ“„ License

MIT License - see LICENSE file for details.

๐Ÿ™ Acknowledgments


Made with โค๏ธ for the Odoo and AI community

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    B
    quality
    A
    maintenance
    An MCP server implementation that integrates with Odoo ERP systems, enabling AI assistants to interact with Odoo data and functionality through the Model Context Protocol.
    Last updated
    41
    382
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    An MCP server that enables AI assistants to interact with Odoo ERP apps like Inventory, CRM, Sales, and Manufacturing. It allows users to read, create, and manage Odoo records and workflows using natural language commands.
    Last updated
    25
    29
    1
    ISC
  • A
    license
    -
    quality
    D
    maintenance
    An extensible MCP server that integrates Odoo with LLMs to enable querying and managing business data like partners, quotations, and sales orders. It supports custom tool registration and multiple transport protocols for both local and remote communication.
    Last updated
    2
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    An MCP server that connects AI assistants to Odoo ERP instances via the built-in XML-RPC API without requiring any additional addons. It enables users to search, create, update, and manage Odoo records and models through natural language.
    Last updated
    30
    MIT

View all related MCP servers

Related MCP Connectors

  • A paid remote MCP for hosted MCP server, built to return verdicts, receipts, usage logs, and audit-r

  • Hosted MCP server for Mini Accountant: invoices, expenses, customers, analytics, tax estimates.

  • Brazilian fiscal MCP server - issue NF-e, NFC-e, NFS-e, CT-e, MDF-e and DC-e via SEFAZ.

View all MCP Connectors

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/heimerle/odoo-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server