odoo_query_model

Pack: odoo · Endpoint: https://gateway.pipeworx.io/odoo/mcp

Power-user generic query: run search_read on ANY Odoo model. Provide model (e.g. “product.template”), domain (Odoo list-of-triples, e.g. [[“list_price”,”>“,100]]), fields, and limit. Use when no specific tool above fits.

Parameters

NameTypeRequiredDescription
modelstringyesOdoo model name, e.g. “product.template”, “stock.picking”, “hr.employee”.
domainarraynoOdoo search domain — a list of triples [field, operator, value], e.g. [[“active”,”=“,true],[“name”,“ilike”,“acme”]]. Empty array [] matches all.
itemsunknownno
fieldsarraynoField names to return, e.g. [“name”,“create_date”]. Omit to let Odoo return its default field set.
itemsstringno
limitnumbernoMax records (default 20).
offsetnumbernoNumber of records to skip (pagination).
orderstringnoSort spec, e.g. “create_date desc”.

Example call

curl -X POST https://gateway.pipeworx.io/odoo/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"odoo_query_model","arguments":{}}}'

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "odoo": {
      "url": "https://gateway.pipeworx.io/odoo/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build June 1, 2026