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 "Install 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 recent invoices, optionally for one contact. |
| Fetch an invoice including its line items. |
| Make a sales invoice with |
| Change a draft invoice only. |
Invoice line items take a description, quantity, unit amount, account code, and optional tax type. Dates use YYYY-MM-DD. Inputs are schema-validated, and Xero API errors are returned intact instead of being papered over.
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 startnpm 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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceAn MCP server allowing Clients to interact with Xero Accounting Software1511321MIT

Xero MCP Serverofficial
AlicenseBqualityDmaintenanceA 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.515,982347MIT- Flicense-qualityDmaintenanceAn enhanced MCP server for Xero, enabling natural language interaction with your Xero organisation for accounting tasks like invoices, contacts, bank transactions, and payroll.
- Alicense-qualityBmaintenanceAn MCP server that enables AI assistants to read and write Xero accounting data, including invoices, contacts, accounts, and payments, through natural language.MIT
Related MCP Connectors
Hosted MCP server for Mini Accountant: invoices, expenses, customers, analytics, tax estimates.
A paid remote MCP for CLI tool MCP, built to return verdicts, receipts, usage logs, and audit-ready
A paid remote MCP for hosted MCP server, built to return verdicts, receipts, usage logs, and audit-r
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/david-buck/xero-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server