Connector guide3-minute read11 MCP toolsEN · DE · IT

Как подключить Odoo к ChatGPT — через MCP

Odoo ERP over the JSON-2 API: search, read, create and update any model, plus purpose-built tools for partners, sales orders, invoices and products. Works against Odoo Online, Odoo.sh and self-hosted Odoo 19+, bearer API key.

HCBy HelpCode teamОбновлено 3 min read Открытый код на GitHub

Без банковской карты · 7 дней пробного периода · Есть вариант self-host

Odoo

Odoo

Odoo ERP over the JSON-2 API: search, read, create and update any model, plus purpose-built tools for partners, sales orders, invoices and products. Works against Odoo Online, Odoo.sh and self-hosted Odoo 19+, bearer API key.

инструментов

11

Регион

INTL

Категория

ERP

Аутентификация

Bearer Token

Требуемые env-vars

ODOO_URLODOO_DBODOO_API_KEY
Установить в Cloud одним кликом

7 дней бесплатно · Без карты

  • 7 дней бесплатно
    Без банковской карты
  • GDPR & SOC 2 ready
    Данные в ЕС, журналы аудита
  • Открытый код на GitHub
    Open source · AGPL-3.0
  • Работает с ChatGPT, Claude, Gemini
    Любой MCP-совместимый клиент

Пропустите установку. Заработает меньше чем за 2 минуты.

Начните бесплатный период на cloud.anythingmcp.com, добавьте Odoo одним кликом и направьте свой ИИ-клиент (Claude, ChatGPT, Copilot или Cursor) на сгенерированный MCP-эндпоинт. Без Docker, без git clone, без опыта разработки.

Начать бесплатный период

Summary

Odoo ERP over the JSON-2 API: search, read, create and update any model, plus purpose-built tools for partners, sales orders, invoices and products. Works against Odoo Online, Odoo.sh and self-hosted Odoo 19+, bearer API key.

Попробуй спросить

Примеры промптов для Odoo

Кликни по промпту — он скопируется. Вставь в Claude, ChatGPT, Cursor, Gemini, Copilot или OpenClaw и запусти через этот коннектор.

Odoo · live via MCP
Поделиться
Opus 4.7

Claude — это AI, он может ошибаться. Проверяйте ответы.

💡 Без установки? Используйте cloud.anythingmcp.com напрямую. Войдите, нажмите Connectors → Odoo, вставьте учётные данные, создайте MCP API key — готово. Без Docker, без git clone, без локального сервера.

Odoo + ChatGPT

Odoo ERP over the JSON-2 API: search, read, create and update any model, plus purpose-built tools for partners, sales orders, invoices and products. Works against Odoo Online, Odoo.sh and self-hosted Odoo 19+, bearer API key.

Предварительные требования

Полные инструкции по настройке встроены в коннектор (видны в магазине при выборе коннектора). Требуемые переменные окружения:

ODOO_URL, ODOO_DB, ODOO_API_KEY

Шаг 1 — Получите учётные данные

Getting an API key

  1. In Odoo open your user menu → My Profile → Account Security and create a new API key. Odoo shows it once.
  2. Put it in ODOO_API_KEY, your instance URL in ODOO_URL (e.g. https://mycompany.odoo.com, no trailing slash) and the database name in ODOO_DB. On Odoo Online the database name is usually the subdomain.

This adapter uses the JSON-2 API, which Odoo introduced in 19 and which is the only Odoo HTTP surface a generic REST engine can speak: POST {url}/json/2/{model}/{method} with the key as a bearer token and the database in an X-Odoo-Database header.

Шаг 2 — Установите адаптер

curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d

Шаг 3 — Добавьте коннектор в ChatGPT

ChatGPT поддерживает MCP-серверы через функцию Connectors (планы Plus / Pro / Team / Enterprise). Бесплатный план не поддерживает кастомные коннекторы.

  1. Откройте ChatGPT → Settings → Connectors (или нажмите 🔧 в composer → Manage connectors).
  2. Нажмите "Add custom connector".
  3. Заполните:
    • Name: Odoo
    • MCP server URL: https://cloud.anythingmcp.com/mcp
    • Authentication: Bearer token → вставьте MCP API key
  4. Нажмите Connect.

Доступные инструменты

ToolWhat it does
odoo_search_readSearch and read any Odoo model in one call
odoo_readRead specific records of a model by their ids — the follow-up call when a search has returned ids and you now want the detail of a few of th
odoo_search_countCount the records of a model matching a domain, without transferring them
odoo_fields_getDescribe a model's fields: name, type, label, whether it is required or readonly, and the related model for relational fields
odoo_list_partnersList partners — Odoo's customers, suppliers and contacts — with name, e-mail, phone, city and country
odoo_list_sale_ordersList sales orders with their customer, date, state and total
odoo_list_invoicesList customer invoices and vendor bills with their partner, date, due date, state and residual amount — the answer to 'what is still unpaid'
odoo_list_productsList products with their internal reference, sale price, cost, on-hand quantity and product type
odoo_createCreate a record in any Odoo model
odoo_writeUpdate existing records in any Odoo model
odoo_call_methodCall an arbitrary public method on an Odoo model — the escape hatch for workflow actions such as action_confirm on a sale order or action_po

FAQ

Работает ли бесплатный план ChatGPT с кастомными MCP Connectors? Нет — нужны Plus, Pro, Team или Enterprise.

Следующие шаги

Это руководство помогло?

Your Odoo agent is one click away.

Install the connector, paste the key, prompt ChatGPT. Free for 7 days, no credit card.

Похожие руководства

connectors

Как подключить Odoo к Claude — через MCP

Odoo ERP over the JSON-2 API: search, read, create and update any model, plus purpose-built tools for partners, sales orders, invoices and products. Works against Odoo Online, Odoo.sh and self-hosted Odoo 19+, bearer API key.

connectors

Как подключить Odoo к Cursor — через MCP

Odoo ERP over the JSON-2 API: search, read, create and update any model, plus purpose-built tools for partners, sales orders, invoices and products. Works against Odoo Online, Odoo.sh and self-hosted Odoo 19+, bearer API key.

connectors

Как подключить Odoo к Gemini — через MCP

Odoo ERP over the JSON-2 API: search, read, create and update any model, plus purpose-built tools for partners, sales orders, invoices and products. Works against Odoo Online, Odoo.sh and self-hosted Odoo 19+, bearer API key.

enterprise

Как подключить Odoo к MCP для ИИ-агентов

Интеграция Odoo ERP с ИИ-агентами через MCP. Доступ к модулям CRM, инвентаризации, бухгалтерии и HR через панель AnythingMCP.

connectors

Как подключить AFAS Profit к ChatGPT — через MCP

AFAS Profit — Dutch ERP and HR: read any published GetConnector, list what is available, and inspect a connector's metadata. Token auth with AFAS's base64-wrapped XML token.

connectors

Как подключить Aruba Fatturazione Elettronica к ChatGPT — через MCP

Aruba Fatturazione Elettronica: send and track Italian e-invoices through the Sistema di Interscambio, read received invoices and their SDI notifications. Token auth against Aruba's B2B gateway.