odooclaw-mcp

odooclaw-mcp

MCP server for Odoo 18 that provides 85 tools for CRUD operations, business actions, and migration workflows, enabling natural language interaction with Odoo ERP.

Category
访问服务器

README

OdooClaw MCP

Standalone MCP (Model Context Protocol) server for Odoo 18 over stdio.

MCP name: io.github.nicolasramos/odooclaw-mcp
PyPI package: odooclaw-mcp
Official CLI: odooclaw-mcp

Backward-compatible aliases are also installed:

  • odoo-mcp
  • odoo-mcp-server
  • odoo-18-mcp-server

Quick Start

1) Install

pip install odooclaw-mcp

From source:

git clone https://github.com/nicolasramos/odooclaw-mcp.git
cd odooclaw-mcp
pip install -e .

2) Configure environment

cp .env.example .env

Required:

ODOO_URL=https://yourcompany.odoo.com
ODOO_DB=your_database
ODOO_USERNAME=your_username
ODOO_PASSWORD=your_password

Optional:

ODOO_MCP_DEFAULT_LIMIT=50
ODOO_MCP_MAX_LIMIT=80
LOG_LEVEL=INFO

3) Validate and run

odooclaw-mcp --check-config
odooclaw-mcp

Alternative:

python -m odoo_mcp

MCP Client Configuration (stdio)

{
  "mcpServers": {
    "odoo": {
      "command": "odooclaw-mcp",
      "env": {
        "ODOO_URL": "https://yourcompany.odoo.com",
        "ODOO_DB": "your_database",
        "ODOO_USERNAME": "your_username",
        "ODOO_PASSWORD": "your_password",
        "ODOO_MCP_DEFAULT_LIMIT": "50",
        "ODOO_MCP_MAX_LIMIT": "80"
      }
    }
  }
}

Tool call payload contract

When calling tools through the MCP protocol, arguments must be wrapped in a top-level payload object.

Valid shape:

{
  "name": "odoo_search",
  "arguments": {
    "payload": {
      "model": "res.partner",
      "domain": [["customer_rank", ">", 0]],
      "limit": 3
    }
  }
}

If payload is omitted, validation fails with an error equivalent to Field required: payload.

Scope

  • 85 MCP tools for Odoo operations (CRUD + business actions + migration workflows)
  • Pydantic validation for all tool payloads
  • Odoo 18 compatibility helpers (customer_rank / supplier_rank / payment_state)
  • Security guards (model allowlist, denylisted fields, action guard, unlink blocked)
  • Structured logging and audit actions

Available Tools

The server currently exposes 85 MCP tools.

Note: the grouped tables below focus on common/high-value tools. Use MCP list_tools to inspect the full live tool catalog for your installed version.

Core record operations

Tool Purpose
odoo_search Search records in an allowed model using Odoo domain syntax.
odoo_read Read selected fields from specific record IDs.
odoo_search_read Combined search + read for efficient retrieval.
odoo_create Create a new record in an allowed model.
odoo_write Update existing records in an allowed model.
odoo_invoke_action Invoke an Odoo model method such as action_* or button_*.
odoo_get_record_summary Return a compact, human-friendly summary for a record.

Partners, sales, and CRM

Tool Purpose
odoo_find_partner Find a customer or vendor by name, VAT, or email.
odoo_get_partner_summary Get a partner overview with useful business context.
odoo_find_sale_order Search sale orders by name, partner, or state.
odoo_get_sale_order_summary Retrieve a sale order summary including lines.
odoo_create_sale_order Create a quotation / sale order with product lines.
odoo_confirm_sale_order Confirm a quotation into a sale order.
odoo_create_lead Create a CRM lead / opportunity.

Accounting, purchasing, and payments

Tool Purpose
odoo_create_purchase_order Create a purchase order from partner and line data.
odoo_create_vendor_invoice Create a vendor bill.
odoo_find_pending_invoices Find posted invoices or bills pending payment using Odoo 18 semantics.
odoo_get_invoice_summary Get a detailed summary of an invoice or bill.
odoo_register_payment Register a payment for a specific invoice.

Projects, activities, and chatter

Tool Purpose
odoo_find_task Search project tasks by name, project, or stage.
odoo_create_task Create a new project task.
odoo_update_task Update task stage, assignee, or deadline.
odoo_create_activity Schedule an activity on a record.
odoo_list_pending_activities List pending activities, optionally filtered by model or assignee.
odoo_mark_activity_done Mark an activity as completed.
odoo_post_chatter_message Post a chatter message on a record.
odoo_create_activity_summary Create a summary-style activity for follow-up.
odoo_close_activity_with_reason Close an activity and record the reason.
odoo_log_timesheet Log a timesheet entry for a project or task.

Support, contracts, stock, and instance capabilities

Tool Purpose
odoo_get_capabilities Report which modules and capabilities are available in the connected instance.
odoo_create_helpdesk_ticket Create a helpdesk ticket directly.
odoo_create_helpdesk_ticket_from_partner Create a helpdesk ticket linked to a partner.
odoo_draft_ticket_email Prepare a draft support email from a ticket context.
odoo_create_contract_line Add a line to a contract.
odoo_replace_contract_line Replace an existing contract line with a new one.
odoo_close_contract_line Close a contract line with a reason and close date.
odoo_get_product_stock Inspect stock quantities for a product.
odoo_create_calendar_event Create a meeting or appointment with attendees.

Introspection

Tool Purpose
odoo_get_model_schema Inspect the fields and schema of a model such as res.partner or account.move.

Available Resources

The server also exposes 5 MCP resources for discovery and context:

Resource Purpose
odoo://context/odoo18-fields-reference Odoo 18 field reference for common model/domain pitfalls such as customer_rank, supplier_rank, and payment_state.
odoo://models JSON list of models currently allowed by the security policy.
odoo://model/{model_name}/schema Technical schema for a specific Odoo model.
odoo://record/{model}/{id}/summary JSON summary of a specific record.
odoo://record/{model}/{id}/chatter_summary Summary of the chatter history for a specific record.

Guardrails and Runtime Behavior

  • Uses standard Odoo JSON-RPC endpoints; it does not depend on OdooClaw delegation.
  • Tool payloads are validated with Pydantic before execution.
  • Model access is restricted by an allowlist defined in the server configuration.
  • Sensitive write fields are denylisted and unlink is blocked.
  • Search-style tools use default and maximum limits (ODOO_MCP_DEFAULT_LIMIT, ODOO_MCP_MAX_LIMIT).
  • sender_id is treated as audit/context metadata; execution runs as the authenticated Odoo session user.
  • Some tools require the corresponding Odoo apps/modules to be installed (CRM, Helpdesk, Projects, Contracts, Inventory, etc.).

Security Model

The server uses standard Odoo JSON-RPC endpoints and executes operations as the configured Odoo session user.

For production, use a dedicated least-privilege Odoo account.

Production Notes

  • This is a stdio MCP server, not an HTTP API service.
  • Docker/Compose support is mainly for packaging or controlled runtime scenarios.
  • In normal usage, your MCP client launches the server process directly.
  • Keep Odoo credentials in environment variables or a secrets manager.

Known Limitations

  • One Odoo credential context per MCP process.
  • ODOO_DB is currently required by the authentication flow.
  • Some tools require specific Odoo apps/modules (CRM, Helpdesk, Project, etc.).
  • Designed for Odoo 18 field semantics.

Development

pip install -e .[dev]
ruff check src tests
black --check src tests
mypy src --ignore-missing-imports
pytest tests -v
python -m build
twine check dist/*

Docs

License

MIT - see LICENSE.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选