Skip to content
VS Code

odoo mcp for VS Code

io.github.nicolasramos/odoo-mcp

MCP server for Odoo 18 with 38 business tools

client:VS Code transport:stdio runtime:pypi

Install odoo mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "odoo-url",
      "description": "ODOO_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "odoo-db",
      "description": "ODOO_DB",
      "password": true
    },
    {
      "type": "promptString",
      "id": "odoo-username",
      "description": "ODOO_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "odoo-password",
      "description": "ODOO_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "odoo-mcp-default-limit",
      "description": "ODOO_MCP_DEFAULT_LIMIT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "odoo-mcp-max-limit",
      "description": "ODOO_MCP_MAX_LIMIT",
      "password": true
    }
  ],
  "servers": {
    "odoo-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "odoo-18-mcp-server"
      ],
      "env": {
        "ODOO_URL": "${input:odoo-url}",
        "ODOO_DB": "${input:odoo-db}",
        "ODOO_USERNAME": "${input:odoo-username}",
        "ODOO_PASSWORD": "${input:odoo-password}",
        "ODOO_MCP_DEFAULT_LIMIT": "${input:odoo-mcp-default-limit}",
        "ODOO_MCP_MAX_LIMIT": "${input:odoo-mcp-max-limit}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

odoo mcp in other clients