Connector guide3-minute read11 MCP toolsEN · DE · IT

Odoo mit Cursor verbinden — über 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 teamAktualisiert 3 min read Open Source auf GitHub

Keine Kreditkarte · 7 Tage Test · Self-Hosting-Alternative verfügbar

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.

Tools

11

Region

INTL

Kategorie

ERP

Authentifizierung

Bearer Token

Benötigte Env-Vars

ODOO_URLODOO_DBODOO_API_KEY
Mit einem Klick in der Cloud installieren

7 Tage kostenlos testen · Keine Kreditkarte

  • 7 Tage kostenlos
    Keine Kreditkarte nötig
  • GDPR & SOC 2 ready
    EU-Datenhaltung, Audit-Logs
  • Open Source auf GitHub
    Open-Source · AGPL-3.0
  • Funktioniert mit ChatGPT, Claude, Gemini
    Jeder MCP-kompatible Client

Installation überspringen. In unter 2 Minuten einsatzbereit.

Starte eine kostenlose Testphase auf cloud.anythingmcp.com, füge Odoo mit einem Klick hinzu und richte deinen KI-Client (Claude, ChatGPT, Copilot oder Cursor) auf den erzeugten MCP-Endpoint. Kein Docker, kein git clone, keinerlei Entwicklungserfahrung nötig.

Kostenlos testen

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.

Frag einfach

Beispiel-Prompts für Odoo

Klick auf einen Prompt, um ihn zu kopieren. In Claude, ChatGPT, Cursor, Gemini, Copilot oder OpenClaw einfügen — und gegen diesen Connector laufen lassen.

Odoo · live via MCP
Teilen
Opus 4.7

Claude ist KI und kann Fehler machen. Bitte Antworten gegenprüfen.

💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → Odoo klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein git clone, kein lokaler Server.

Odoo + Cursor

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.

Voraussetzungen

Die vollständige Setup-Anleitung ist in den Connector eingebaut (im Store sichtbar, wenn du den Connector auswählst). Benötigte Umgebungsvariablen für diesen Connector:

ODOO_URL, ODOO_DB, ODOO_API_KEY

Schritt 1 — Zugangsdaten holen

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.

Schritt 2 — Adapter installieren

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

Schritt 3 — Connector in Cursor hinzufügen

Cursor liest MCP-Server aus ~/.cursor/mcp.json. Füge diesen Eintrag hinzu:

{
  "mcpServers": {
    "anythingmcp": {
      "url": "https://cloud.anythingmcp.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
    }
  }
}
  1. Hole deinen MCP API Key aus AnythingMCP → Profil → MCP API Keys → Neuer Key.
  2. Speichern und Cursor neu starten.
  3. Cursor → Einstellungen → MCP öffnen und prüfen, ob Odoo als "Connected" gelistet ist.
  4. Chatten — alle Odoo-Tools sind aufrufbar.

Verfügbare Tools

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

Unterstützt Cursor benutzerdefinierte MCP-Server im Free-Tier? Ja — MCP ist auf Hobby, Pro und Business verfügbar.

Nächste Schritte

War dieser Guide hilfreich?

Your Odoo agent is one click away.

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

Verwandte Anleitungen

connectors

Odoo mit ChatGPT verbinden — über 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 mit Claude verbinden — über 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 mit Gemini verbinden — über 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 mit MCP für KI-Agenten verbinden

Integriere Odoo ERP über MCP mit KI-Agenten. Greife auf CRM-, Lager-, Buchhaltungs- und HR-Module über das AnythingMCP-Dashboard zu.

connectors

AFAS Profit mit Cursor verbinden — über 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 mit Cursor verbinden — über 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.