mcp-server-odoo
Allows interaction with an Odoo ERP system, providing tools for accessing Odoo models and executing SQL queries.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-odooRun a SQL query to find overdue invoices"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-server-odoo (KLC fork)
一個把 Odoo ERP 接進 Claude 等 MCP 用戶端的 MCP server。
本 repo 是 ivnvxd/mcp-server-odoo 的
fork,額外加入 sql_query 工具等客製。授權沿用上游的 MPL-2.0。
安裝與連線(Claude Code,一行)
不需要 clone、不需要開終端機——在 Claude Code 直接執行:
claude mcp add -s user \
-e ODOO_URL=https://你的網址.odoo.com \
-e ODOO_DB=你的資料庫名 \
-e ODOO_API_KEY=你的金鑰 \
odoo -- uvx --from git+https://github.com/futurecorptw/mcp-server-odoo mcp-server-odoouvx 會直接從本 repo 抓原始碼、建好環境並執行,不必先發佈到 PyPI。
想鎖定版本可在網址後面加
@加 tag 或 commit,例如git+https://github.com/futurecorptw/mcp-server-odoo@v0.3.1。
Claude Desktop
把對應設定放進 claude_desktop_config.json:
{
"mcpServers": {
"odoo": {
"command": "uvx",
"args": ["--from", "git+https://github.com/futurecorptw/mcp-server-odoo", "mcp-server-odoo"],
"env": {
"ODOO_URL": "https://你的網址.odoo.com",
"ODOO_DB": "你的資料庫名",
"ODOO_API_KEY": "你的金鑰"
}
}
}
}Related MCP server: mcp_odoo_fresh
環境變數
變數 | 說明 |
| Odoo 網址,例: |
| 資料庫名稱 |
| 你個人的 Odoo API 金鑰(依你自己的權限運作,勿共用) |
需要 Odoo 端已安裝「Odoo MCP Server」模組並開放要存取的 model。
前提
已安裝
uv(提供uvx):macOS / Linux:
curl -LsSf https://astral.sh/uv/install.sh | shWindows:
irm https://astral.sh/uv/install.ps1 | iex
Python 3.10+
授權與致謝
授權:Mozilla Public License 2.0(MPL-2.0),見 LICENSE。
原始專案:
ivnvxd/mcp-server-odoo, 著作權歸原作者所有;本 fork 依 MPL-2.0 條款釋出修改版本。
This server cannot be deployed
Maintenance
Related MCP Connectors
Let AI agents query data and act across all your business apps via MCP.
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
Unified MCP Server is a remote MCP connector for AI agents and vertical AI products that provides access to 22,000+ authorized SaaS tools across 400+ integrations and 24 categories directly inside LLMs (Claude, GPT, Gemini, Cohere). Tools operate only on explicitly authorized customer connections, enabling agents to safely read and write against live third-party systems.
- dataOAuthco.thinair
PostgreSQL, MySQL, and SQL Server in one session. 26 read-only MCP tools for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables interaction with Odoo ERP systems for product, customer, order, invoice, and payment management using MCP tools.6MIT
- AlicenseAqualityDmaintenanceEnables AI agents to interact with Odoo ERP to perform sales tasks such as searching clients and products, and creating and confirming quotations via the MCP protocol.52MIT
- AlicenseNot gradedqualityCmaintenanceEnables Claude to interact with Odoo through 12 MCP tools covering discovery, CRUD operations, and bulk import/export via XML-RPC.MIT
- FlicenseNot gradedqualityBmaintenanceEnables interacting with Odoo ERP through a stateless HTTP MCP server, providing CRUD and execution tools via JSON-RPC.-