### Run Odoo MCP Improved Server Source: https://github.com/hachecito/odoo-mcp-improved/blob/main/README.md Starts the Odoo MCP Improved server using the Python module. This command assumes the package has been installed. ```bash python -m odoo_mcp ``` -------------------------------- ### Install Odoo MCP Improved via Pip Source: https://github.com/hachecito/odoo-mcp-improved/blob/main/README.md Installs the Odoo MCP Improved package using pip, the Python package installer. This is the recommended method for most users. ```bash pip install odoo-mcp-improved ``` -------------------------------- ### Install Odoo MCP Improved from Source Source: https://github.com/hachecito/odoo-mcp-improved/blob/main/README.md Installs the Odoo MCP Improved package from its source code. This involves cloning the repository and then installing the package in editable mode. ```bash git clone https://github.com/hachecito/odoo-mcp-improved.git cd odoo-mcp-improved pip install -e . ``` -------------------------------- ### Configure Odoo Connection via JSON File Source: https://github.com/hachecito/odoo-mcp-improved/blob/main/README.md Creates a JSON configuration file named `odoo_config.json` to store Odoo connection details. This file should be placed in the working directory. ```json { "url": "https://your-odoo-instance.com", "db": "your_database", "username": "your_username", "password": "your_password" } ``` -------------------------------- ### Claude Desktop Integration Configuration for Odoo MCP Source: https://github.com/hachecito/odoo-mcp-improved/blob/main/README.md Adds the Odoo MCP server configuration to the `claude_desktop_config.json` file. This allows Claude Desktop to connect to and utilize the Odoo MCP server. ```json { "mcpServers": { "odoo": { "command": "python", "args": ["-m", "odoo_mcp"], "env": { "ODOO_URL": "https://your-odoo-instance.com", "ODOO_DB": "your_database", "ODOO_USERNAME": "your_username", "ODOO_PASSWORD": "your_password" } } } } ``` -------------------------------- ### Odoo Accounting Tools Source: https://github.com/hachecito/odoo-mcp-improved/blob/main/README.md Offers functionalities for accounting operations in Odoo. Users can search for journal entries, create new entries, and analyze key financial ratios. ```Python search_journal_entries create_journal_entry analyze_financial_ratios ``` -------------------------------- ### Odoo Inventory Tools Source: https://github.com/hachecito/odoo-mcp-improved/blob/main/README.md Provides functions for managing inventory within Odoo. These tools allow users to check product availability, create inventory adjustments, and analyze inventory turnover metrics. ```Python check_product_availability create_inventory_adjustment analyze_inventory_turnover ``` -------------------------------- ### Configure Odoo Connection via Environment Variables Source: https://github.com/hachecito/odoo-mcp-improved/blob/main/README.md Sets environment variables to configure the connection details for the Odoo instance. These variables are used by the Odoo MCP Improved server to connect to your Odoo ERP. ```bash export ODOO_URL=https://your-odoo-instance.com export ODOO_DB=your_database export ODOO_USERNAME=your_username export ODOO_PASSWORD=your_password ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.