Connector guide3-minute read11 MCP toolsEN · DE · IT

Come collegare Odoo a Cursor — via 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 teamAggiornato 3 min read Open source su GitHub

Nessuna carta di credito · 7 giorni di prova · Alternativa self-host disponibile

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.

tool

11

Regione

INTL

Categoria

ERP

Autenticazione

Bearer Token

Env vars richieste

ODOO_URLODOO_DBODOO_API_KEY
Installa con un clic su Cloud

7 giorni di prova gratuita · Nessuna carta di credito

  • Prova gratuita di 7 giorni
    Nessuna carta di credito
  • GDPR & SOC 2 ready
    Dati in UE, log di audit
  • Open source su GitHub
    Open source · AGPL-3.0
  • Funziona con ChatGPT, Claude, Gemini
    Qualsiasi client compatibile MCP

Salta l'installazione. Attivo in meno di 2 minuti.

Avvia una prova gratuita su cloud.anythingmcp.com, aggiungi Odoo con un clic, poi punta il tuo client AI (Claude, ChatGPT, Copilot o Cursor) all'endpoint MCP generato. Niente Docker, niente git clone, nessuna esperienza di sviluppo richiesta.

Inizia la prova gratuita

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.

Prova a chiedere

Prompt di esempio per Odoo

Clicca su un prompt per copiarlo. Incollalo in Claude, ChatGPT, Cursor, Gemini, Copilot o OpenClaw per eseguirlo contro questo connettore.

Odoo · live via MCP
Condividi
Opus 4.7

Claude è un'AI e può sbagliare. Verifica sempre le risposte.

💡 Niente installazione? Vai direttamente su cloud.anythingmcp.com. Accedi, clicca Connectors → Odoo, inserisci le credenziali, genera una MCP API key — fatto. Niente Docker, niente git clone, niente server locale.

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.

Prerequisiti

Le istruzioni di setup complete sono incluse nel connettore stesso (visibili nello store quando lo selezioni). Le variabili d'ambiente richieste sono:

ODOO_URL, ODOO_DB, ODOO_API_KEY

Step 1 — Ottieni le credenziali

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.

Step 2 — Installa l'adapter

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

Step 3 — Aggiungi il connettore in Cursor

Cursor legge i server MCP da ~/.cursor/mcp.json. Aggiungi questa voce:

{
  "mcpServers": {
    "anythingmcp": {
      "url": "https://cloud.anythingmcp.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
    }
  }
}
  1. Ottieni la tua MCP API key da AnythingMCP → Profilo → MCP API Keys → Nuova Key.
  2. Salva il file e riavvia Cursor.
  3. Apri Cursor → Impostazioni → MCP per verificare che Odoo sia presente e "Connected".
  4. Inizia a chattare — tutti gli strumenti di Odoo sono ora invocabili.

Tool disponibili

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

Cursor supporta MCP server personalizzati nel piano free? Sì — MCP è disponibile su Hobby, Pro e Business.

Prossimi passi

Questa guida ti è stata utile?

Your Odoo agent is one click away.

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

Guide correlate

connectors

Come collegare Odoo a ChatGPT — via 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

Come collegare Odoo a Claude — via 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

Come collegare Odoo a Gemini — via 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

Come collegare Odoo a MCP per agenti AI

Integra Odoo ERP con agenti AI tramite MCP. Accedi ai moduli CRM, inventario, contabilità e risorse umane attraverso la dashboard di AnythingMCP.

connectors

Come collegare AFAS Profit a Cursor — via 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

Come collegare Aruba Fatturazione Elettronica a Cursor — via 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.