Xero MCP Server

Official

list-quotes

List all quotes in Xero. Ask the user if they want to see quotes for a specific contact before running. Ask the user if they want the next page of quotes after running this tool if 10 quotes are returned. If they do, call this tool again with the page number and the contact provided in the previous call.

Input Schema

NameRequiredDescriptionDefault
contactIdNo
pageYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "contactId": { "type": "string" }, "page": { "type": "number" } }, "required": [ "page" ], "type": "object" }