xero-mcp
Provides tools to search Xero contacts, retrieve contact defaults, list and fetch invoices, and create or update draft sales invoices with guardrails preventing approval, payment, or deletion.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@xero-mcpSearch for contact Acme and create a draft invoice for them"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
xero-mcp
A small, local Xero MCP server for looking up contacts and invoices from Codex—and making draft invoices when you actually mean draft invoices.
It runs on your Mac, talks to Xero over OAuth, and keeps its tokens in ~/.xero-mcp/tokens.json. No database, no hosted service, no mystery background process.
The guardrails
It can find contacts, list invoices, and fetch a full invoice.
It can create an
ACCRECsales invoice asDRAFT.It can update an invoice only after checking that it is still
DRAFT.It cannot approve, authorise, pay, send, email, void, or delete an invoice.
The point is to make the useful bit easy without giving an AI a route to finalise something in your books.
Related MCP server: Xero MCP Server
What you need
macOS
Node 20+ (Node 25 is fine)
A Xero organisation you can access
A Xero OAuth Web app
Set up the Xero app
Go to Xero Developer → My Apps and create a Web app using Standard auth code.
Add this exact OAuth redirect URI:
http://localhost:3000/callbackXero allows
localhostfor this local flow, but not127.0.0.1.In the app's Configuration page, copy the Client ID and generate a Client Secret.
The app requests the smallest useful set of scopes:
offline_access accounting.contacts.read accounting.invoices accounting.settings.readFirst run
git clone https://github.com/david-buck/xero-mcp.git
cd xero-mcp
cp .env.example .env
# Add the Client ID and Client Secret from Xero to .env
npm install
npm run authThe auth command starts a short-lived listener on localhost:3000, opens the Xero approval page (and prints the URL if macOS does not open it), then saves the token locally. After that, it refreshes tokens automatically—no browser required unless access is revoked or refresh fails.
If you can access more than one Xero organisation, set XERO_TENANT_ID in .env before running auth. Otherwise it uses the first connected organisation.
Add it to Codex
Add this to ~/.codex/config.toml and replace the path with wherever you cloned the repo:
[mcp_servers.xero]
command = "node"
args = ["--env-file=/ABSOLUTE/PATH/TO/xero-mcp/.env", "/ABSOLUTE/PATH/TO/xero-mcp/src/index.js"]Restart Codex. The server uses stdio, so it stays quiet unless there is something useful to report back through an MCP tool call.
Tools
Tool | What it does |
| Search contacts by name or email and return their Xero Contact ID. |
| Get a contact's default sales account code, tax type, currency, and line-amount preference. |
| List active revenue/sales account codes that can be used on invoice lines. |
| List active tax types that Xero permits on revenue lines. |
| List one page of invoices, optionally filtered by contact and exact invoice number. |
| Fetch an invoice including its line items. |
| Make a sales invoice with |
| Change a draft invoice only. |
To retrieve older invoices, call xero_list_invoices with { "page": 2, "limit": 20 }. Increment page until fewer than limit records return; an exact multiple may require a final empty page. Each call fetches one page and returns an array. Defaults remain page 1 and limit 20 (maximum 100).
For an exact number, use { "invoiceNumber": "INV-0123" }; surrounding whitespace is trimmed, and numbers containing commas are unsupported. You can combine invoiceNumber, contactId, and pagination. Pass a returned invoiceId to xero_get_invoice to fetch its full details.
Monetary invoice lines require a description, quantity, unit amount, and account code, with optional tax type. Description-only lines contain just description (for example, { "description": "Project notes" }) and optionally an existing lineItemId; they cannot contain quantity, unit amount, account, item, or tax fields. Monetary lines can also carry an existing Xero item code and, during updates, a line-item ID.
Unit prices support at most four decimal places; more precise values are rejected without rounding.
Dates use YYYY-MM-DD. New drafts accept lineAmountTypes: Exclusive, Inclusive, or NoTax, defaulting to Exclusive. Contact preferences are not applied automatically. Full invoice responses include the tax basis returned by Xero as lineAmountTypes; updates preserve the existing basis by omitting it from the request. Inputs are schema-validated, and Xero API errors are returned intact instead of being papered over.
New drafts also accept optional currencyCode, for example "USD"; surrounding whitespace is trimmed and letters are uppercased. Omitting it leaves Xero's organisation base-currency default. The currency must be enabled in the organisation; Xero validates this. Unit amounts are denominated in the chosen currency and this server does not convert them or set an exchange rate. You may use contact defaults to choose an explicit code; they are not applied automatically. Existing invoice currency cannot be changed through this server.
Updating lineItems replaces the invoice's complete line set. Preserve an existing line by sending its lineItemId; omit it only when intentionally creating a new line. This matches Xero's update semantics and prevents accidental loss of item linkage or lines that were not meant to change.
When drafting, start with the contact defaults, then use the account and tax-rate helpers if you need to choose or verify a code. If a line has no taxType, Xero uses the selected account's default tax rate.
A quick local check
npm run check
npm test
npm startnpm test runs offline behavioral tests with synthetic credentials and owned temporary token directories. It does not use your .env, saved tokens, or a live Xero account.
npm start waits for MCP input. Hit Ctrl-C when you are done.
Keep the private bits private
.env and node_modules are ignored by Git. Tokens live outside the repository at ~/.xero-mcp/tokens.json with local-only file permissions. Do not commit your .env file or paste your Client Secret into an issue.
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for Codat — companies, connections, invoices, bills and financial statements.
Hosted MCP server for Mini Accountant: invoices, expenses, customers, analytics, tax estimates.
MCP server for Quaderno — tax-rate calculation, invoices, contacts, products, receipts & expenses.
MCP server for Modern Treasury — payment orders, transactions, counterparties and ledgers.
Related MCP Servers
- AlicenseBqualityAmaintenanceAn MCP server allowing Clients to interact with Xero Accounting Software15160 npm22MIT

Xero MCP Serverofficial
AlicenseBqualityFmaintenanceA Model Context Protocol server implementation providing standardized access to Xero's accounting and business features, enabling operations like contact management, invoice creation, and chart of accounts management through MCP.5111,730 npm369MIT- FlicenseNot gradedqualityDmaintenanceAn enhanced MCP server for Xero, enabling natural language interaction with your Xero organisation for accounting tasks like invoices, contacts, bank transactions, and payroll.-
- AlicenseNot gradedqualityCmaintenanceAn MCP server that enables AI assistants to read and write Xero accounting data, including invoices, contacts, accounts, and payments, through natural language.MIT