odoo_search_partners

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

Search Odoo contacts & companies (res.partner) by name, email, or company flag. Returns id, name, email, phone, and company/customer flags. Use for “find the contact/customer named X” or “list companies”.

Parameters

NameTypeRequiredDescription
namestringnoCase-insensitive substring match on partner name (ilike).
emailstringnoCase-insensitive substring match on email (ilike).
is_companybooleannoFilter to companies (true) or individuals (false). Omit for both.
limitnumbernoMax records (default 20).

Example call

Arguments

{
  "name": "Acme Corp",
  "_odooUrl": "https://your-instance.odoo.com",
  "_odooDb": "your_database",
  "_odooUid": "your_user_id",
  "_odooPassword": "your-odoo-password"
}

curl

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_search_partners","arguments":{"name":"Acme Corp","_odooUrl":"https://your-instance.odoo.com","_odooDb":"your_database","_odooUid":"your_user_id","_odooPassword":"your-odoo-password"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('odoo_search_partners', {
  "name": "Acme Corp",
  "_odooUrl": "https://your-instance.odoo.com",
  "_odooDb": "your_database",
  "_odooUid": "your_user_id",
  "_odooPassword": "your-odoo-password"
});

More examples

{
  "email": "[email protected]",
  "is_company": false,
  "_odooUrl": "https://your-instance.odoo.com",
  "_odooDb": "your_database",
  "_odooUid": "your_user_id",
  "_odooPassword": "your-odoo-password"
}

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 August 30, 2026