create-quote
Generate and customize quotes in Xero by specifying contact details, line items, and invoice terms using the Xero MCP Server.
Instructions
Create a quote in Xero.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| contactId | Yes | ||
| lineItems | Yes | ||
| quoteNumber | No | ||
| reference | No | ||
| summary | No | ||
| terms | No | ||
| title | No |
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"
},
"quoteNumber": {
"type": "string"
},
"reference": {
"type": "string"
},
"summary": {
"type": "string"
},
"terms": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"contactId",
"lineItems"
],
"type": "object"
}