list_invoices
Pack: xero · Endpoint: https://gateway.pipeworx.io/xero/mcp
List invoices and bills from a Xero accounting organisation. Returns compact invoice summaries (number, type, status, contact, dates, total, amount due, currency) for bookkeeping, accounts-receivable, and accounts-payable review. Supports Xero filter expressions and pagination.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
tenant_id | string | no | Optional Xero tenant (organisation) id to target. If omitted, the first connected organisation is used. Get ids from list_organisations. |
where | string | no | Optional Xero filter expression (e.g. ‘Status==“AUTHORISED”’ or ‘Type==“ACCREC”’). Applied as the Xero where query parameter. |
page | number | no | Page number for pagination (default 1). Xero returns up to 100 invoices per page. |
Example call
curl -X POST https://gateway.pipeworx.io/xero/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_invoices","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"xero": {
"url": "https://gateway.pipeworx.io/xero/mcp"
}
}
}
See Getting Started for client-specific install steps.