Odoo BuildOdoo Build
Home
Help
Images
Snippets
Revisions
Modules
Changelog
Mint System
Chat
GitHub
Home
Help
Images
Snippets
Revisions
Modules
Changelog
Mint System
Chat
GitHub
  • Home

    • Home
    • Help
    • Images
    • Snippets
    • Revisions
    • Modules
    • Changelog

Mint System Odoo MCP

Docker pulls

Image to run the Odoo MCP server.

Source: https://github.com/Mint-System/Odoo-Build/tree/main/images/odoo-mcp

Usage

Add this config to your MCP client configuration:

{
    "mcpServers": {
        "odoo": {
            "command": "docker",
            "args": [
                "run",
                "-i",
                "--rm",
                "-e",
                "ODOO_URL",
                "-e",
                "ODOO_DATABASE",
                "-e",
                "ODOO_USERNAME",
                "-e",
                "ODOO_PASSWORD",
                "mintsystem/odoo-mcp"
            ],
            "env": {
                "ODOO_URL": "http://odoo:8069",
                "ODOO_DATABASE": "18.0",
                "ODOO_USERNAME": "admin",
                "ODOO_PASSWORD": "admin"
            }
        }
    }
}

Environment Variables

The following environment variables can be configured:

  • ODOO_URL: The URL of your Odoo instance (default: http://localhost:8069)
  • ODOO_DATABASE: The name of your Odoo database (default: odoo)
  • ODOO_USERNAME: The username for Odoo authentication (default: admin)
  • ODOO_PASSWORD: The password for Odoo authentication (default: admin)
Edit this page
Last Updated:
Contributors: Kurt Gisler