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
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | Case-insensitive substring match on partner name (ilike). |
email | string | no | Case-insensitive substring match on email (ilike). |
is_company | boolean | no | Filter to companies (true) or individuals (false). Omit for both. |
limit | number | no | Max records (default 20). |
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_search_partners","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.