Skip to main content

MCP Server for connecting Claude/Cursor to multiple Odoo instances

Project description

odoo-mcp-multi

MCP Server for connecting MCP clients (Antigravity, Claude Desktop, Cursor, VS Code) to multiple Odoo instances.

🌟 Features

  • Multi-profile management: Store credentials for multiple environments (prod, staging, dev).
  • Secure by default: Credentials safely stored in ~/.config/odoo-mcp/ (600 permissions).
  • Multi-protocol Support: JSON-RPC (8.0+), JSON2 (19.0+), XML-RPC (legacy) natively auto-detected.
  • 10 Native MCP tools: search_read, write, create, export_records, import_records, execute_kw, list_models, list_fields, list_available_profiles, get_version.
  • Full CLI parity: Every MCP tool is also available as a CLI command — same logic, no duplication (DRY).
  • Integrated CLI: Profile management, connection testing, and all Odoo data operations from your terminal.

🚀 Installation & Quick Start

# Install package
pip install odoo-mcp-multi

# 1. Add your Odoo instance credentials
odoo-mcp add-profile

# 2. Start MCP server (Optional: lock to a specific profile with -p)
odoo-mcp run

📋 1-Minute Setup (Copy-Paste Prompt)

Paste this into your AI client (Antigravity, Claude, Cursor) to get started instantly:

Install & configure the Odoo MCP server. Run these steps:

  1. Install: pip install odoo-mcp-multi
  2. Add a profile: odoo-mcp add-profile (enter your Odoo URL, database, user, and API key)
  3. Test connection: odoo-mcp test
  4. Add this to your MCP client config (~/.gemini/antigravity/mcp_config.json for Antigravity, ~/Library/Application Support/Claude/claude_desktop_config.json for Claude Desktop, .cursor/mcp.json for Cursor):
    {
      "mcpServers": {
        "odoo": {
          "command": "odoo-mcp",
          "args": ["run"]
        }
      }
    }
    
  5. Restart your AI client. You now have access to 10 Odoo tools: search_read, write, create, export_records, import_records, execute_kw, list_models, list_fields, list_available_profiles, get_version.

💻 CLI Operations

All operations are available directly from your terminal. Use odoo-mcp [COMMAND] --help for specific flags.

Profile Management

  • odoo-mcp add-profile: Interactive wizard to register a new instance.
  • odoo-mcp list-profiles: Displays all configured profiles.
  • odoo-mcp edit-profile NAME: Modify credentials, URLs, or database of an existing profile.
  • odoo-mcp remove-profile NAME: Deletes a profile.
  • odoo-mcp set-default NAME: Sets the default profile.
  • odoo-mcp test -p NAME: Tests live connection to confirm credentials are working.
  • odoo-mcp run: Starts the MCP server process.

Odoo Data Operations

All data commands support --profile / -p and output JSON for composability.

  • odoo-mcp search-read -m MODEL: Search and read records (--domain, --fields, --limit, --offset, --order).
  • odoo-mcp write -m MODEL -i IDS -v VALUES: Update existing records.
  • odoo-mcp create -m MODEL -v VALUES: Create a new record.
  • odoo-mcp export-records -m MODEL: Export via native export_data (--fields, --domain).
  • odoo-mcp import-records -m MODEL -f FIELDS -r ROWS: Import via native load.
  • odoo-mcp execute-kw -m MODEL --method METHOD: Execute any model method (--args, --kwargs).
  • odoo-mcp get-version: Retrieve server version info.
  • odoo-mcp list-models: List available models (--search to filter).
  • odoo-mcp list-fields -m MODEL: List all fields of a model.

⚙️ MCP Client Configuration

The server gracefully handles multiple Odoo instances simultaneously. You only need to declare one server definition in your AI client. You can optionally force a single fallback using ["run", "-p", "prod"].

Global Configuration Block:

{
  "mcpServers": {
    "odoo": {
      "command": "odoo-mcp",
      "args": ["run"]
    }
  }
}

Add the block above to your respective client configuration file:

  • Antigravity: ~/.gemini/antigravity/mcp_config.json
  • Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Cursor: .cursor/mcp.json
  • VS Code: .vscode/mcp.json

🛠 Available MCP Tools

All tools accept an optional profile string parameter to dynamically select the target Odoo environment.

  • list_available_profiles: Discovers the local environments available.
  • search_read: Queries records from any model based on domains.
  • write: Updates values on existing records.
  • create: Instantiates new records in a model.
  • export_records: Native Odoo export_data returning a clean array of dicts (Useful for relational lookup and retrieving XML External IDs id).
  • import_records: Native Odoo load bulk processor. Updates existing records if External IDs are provided, or creates new ones.
  • execute_kw: Executes arbitrary backend methods (action_confirm, send, etc).
  • list_models / list_fields: Discovers the system's schema architecture.
  • get_version: Retrieves server version mapping.

💡 Usage Examples in Claude

"List all contacts containing 'John' in their name"

search_read(model="res.partner", domain="[('name', 'ilike', 'John')]", fields="name,email,phone")

"Create a new contact named Alice with email alice@example.com"

create(model="res.partner", values='{"name": "Alice", "email": "alice@example.com"}')

"Confirm the sales order with ID 42"

execute_kw(model="sale.order", method="action_confirm", args="[[42]]")

"What fields does the invoice model have?"

list_fields(model="account.move")

"Export the name and external ID of all active partners"

export_records(model="res.partner", domain="[('active', '=', True)]", fields="id,name")

"Update the phone number of the partner with external ID 'base.res_partner_1' and create a new partner"

import_records(model="res.partner", fields="id,name,phone", rows='[{"id": "base.res_partner_1", "name": "Existing Partner", "phone": "12345"}, {"name": "New Partner", "phone": "67890"}]')

🛡 Security & Development

  • Credentials securely written to ~/.config/odoo-mcp/profiles.json without raw logging.
  • Development mode requires pip install -e ".[dev]". Code standard is heavily enforced by ruff.

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

odoo_mcp_multi-0.3.2.tar.gz (32.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

odoo_mcp_multi-0.3.2-py3-none-any.whl (22.0 kB view details)

Uploaded Python 3

File details

Details for the file odoo_mcp_multi-0.3.2.tar.gz.

File metadata

  • Download URL: odoo_mcp_multi-0.3.2.tar.gz
  • Upload date:
  • Size: 32.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for odoo_mcp_multi-0.3.2.tar.gz
Algorithm Hash digest
SHA256 2d5d42ba9bd8ca6595ee71831136c2d33e731dfb3aa6df7458e1abad520caad6
MD5 765eb65070f8be80f9664612033f8254
BLAKE2b-256 86d4b324b1c72bc5cedb5d29d7a41d2cd619700f4fb5cac1c8e9a5845025fcf4

See more details on using hashes here.

File details

Details for the file odoo_mcp_multi-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: odoo_mcp_multi-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 22.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for odoo_mcp_multi-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 107848660715d2a1d7d1ac24ccf71f9027e0c525a9a42aa5068448e5dc2c9b98
MD5 e6087865074e921fa39ed59dcf6d783e
BLAKE2b-256 1a45399293da7ce683f198f0e29611893cd824563b74653e0d916a22de5ba8a7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page