odoo_list_sale_orders
Pack: odoo · Endpoint: https://gateway.pipeworx.io/odoo/mcp
List Odoo sales orders / quotations (sale.order). Returns name, customer (partner_id), amount_total, state (draft/sent/sale/done/cancel), and date_order. Optionally filter by state. Use for “recent sales orders” or “open quotations”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
state | string | no | Filter by order state: draft, sent, sale, done, or cancel. Omit for all. |
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_list_sale_orders","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.