Skip to main content
Glama
david-buck

xero-mcp

by david-buck

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 ACCREC sales invoice as DRAFT.

  • 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

  1. Go to Xero Developer → My Apps and create a Web app using Standard auth code.

  2. Add this exact OAuth redirect URI:

    http://localhost:3000/callback

    Xero allows localhost for this local flow, but not 127.0.0.1.

  3. 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.read

First 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 auth

The 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

xero_find_contact

Search contacts by name or email and return their Xero Contact ID.

xero_get_contact_defaults

Get a contact's default sales account code, tax type, currency, and line-amount preference.

xero_list_revenue_accounts

List active revenue/sales account codes that can be used on invoice lines.

xero_list_revenue_tax_rates

List active tax types that Xero permits on revenue lines.

xero_list_invoices

List recent invoices, optionally for one contact.

xero_get_invoice

Fetch an invoice including its line items.

xero_create_draft_invoice

Make a sales invoice with Status: DRAFT.

xero_update_draft_invoice

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 start

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.

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    B
    quality
    D
    maintenance
    A 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.
    51
    5,982
    347
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    An enhanced MCP server for Xero, enabling natural language interaction with your Xero organisation for accounting tasks like invoices, contacts, bank transactions, and payroll.
  • A
    license
    -
    quality
    B
    maintenance
    An MCP server that enables AI assistants to read and write Xero accounting data, including invoices, contacts, accounts, and payments, through natural language.
    MIT

View all related MCP servers

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

View all MCP Connectors

Latest Blog Posts

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