Xero MCP Server

Official

create-invoice

Create an invoice in Xero.

Input Schema

NameRequiredDescriptionDefault
contactIdYes
lineItemsYes
referenceNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "contactId": { "type": "string" }, "lineItems": { "items": { "additionalProperties": false, "properties": { "accountCode": { "type": "string" }, "description": { "type": "string" }, "quantity": { "type": "number" }, "taxType": { "type": "string" }, "unitAmount": { "type": "number" } }, "required": [ "description", "quantity", "unitAmount", "accountCode", "taxType" ], "type": "object" }, "type": "array" }, "reference": { "type": "string" } }, "required": [ "contactId", "lineItems" ], "type": "object" }