Пропустите установку. Заработает меньше чем за 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 и запусти через этот коннектор.
Claude — это AI, он может ошибаться. Проверяйте ответы.
💡 Без установки? Используйте cloud.anythingmcp.com напрямую. Войдите, нажмите Connectors → Odoo, вставьте учётные данные, создайте MCP API key — готово. Без Docker, без
git clone, без локального сервера.
Odoo + Gemini
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
- In Odoo open your user menu → My Profile → Account Security and create a new API key. Odoo shows it once.
- Put it in
ODOO_API_KEY, your instance URL inODOO_URL(e.g.https://mycompany.odoo.com, no trailing slash) and the database name inODOO_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 — Добавьте коннектор в Gemini
Gemini CLI читает MCP-серверы из ~/.gemini/settings.json (или %APPDATA%\gemini\settings.json в Windows). Добавьте:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Получите MCP API key в AnythingMCP → Profile → MCP API Keys → New Key.
- Сохраните файл и перезапустите
gemini. - Запустите
/mcpв Gemini CLI —Odooдолжен быть доступен. - Vertex AI Studio: передайте
https://cloud.anythingmcp.com/mcpв массивtoolsзапроса с тем же Bearer-заголовком.
Доступные инструменты
| Tool | What it does |
|---|---|
odoo_search_read | Search and read any Odoo model in one call |
odoo_read | Read 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_count | Count the records of a model matching a domain, without transferring them |
odoo_fields_get | Describe a model's fields: name, type, label, whether it is required or readonly, and the related model for relational fields |
odoo_list_partners | List partners — Odoo's customers, suppliers and contacts — with name, e-mail, phone, city and country |
odoo_list_sale_orders | List sales orders with their customer, date, state and total |
odoo_list_invoices | List customer invoices and vendor bills with their partner, date, due date, state and residual amount — the answer to 'what is still unpaid' |
odoo_list_products | List products with their internal reference, sale price, cost, on-hand quantity and product type |
odoo_create | Create a record in any Odoo model |
odoo_write | Update existing records in any Odoo model |
odoo_call_method | Call 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
Поддерживают ли Gemini 1.5 Pro или 2.x MCP? Да — Gemini CLI ≥ 0.4 и Vertex AI tools API принимают MCP-коннекторы httpUrl с Bearer-заголовком.
Следующие шаги
Это руководство помогло?