Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

Xero

OCI · GHCR.IO/WYRE-TECHNOLOGY/XERO-MCP:V1.5.5 · SCANNED AUG 22

MCP server for Xero accounting — contacts, invoices, payments, accounts, and financial reports.

41 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security0
  • Malware scan not yet available for this package.Unverified
  • Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.Unverified
  • Install-script risk not yet assessed.Unverified
  • Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.Unverified
Provenance & Transparency45
Schema Quality & AI Usability85
  • 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 1435 tokens (~68/item across 21 items; 20 tools + 1 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
  • Supports UI / widget rendering.Pass

Unverified: 2 categories

Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

oci · ghcr.io/wyre-technology/xero-mcp:v1.5.5

# add to Claude Code
claude mcp add wyre-technology-xero-mcp -- docker run --rm -i ghcr.io/wyre-technology/xero-mcp:v1.5.5
# add to Codex CLI
codex mcp add wyre-technology-xero-mcp -- docker run --rm -i ghcr.io/wyre-technology/xero-mcp:v1.5.5
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "wyre-technology-xero-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/xero-mcp:v1.5.5"
      ],
      "enabled": true
    }
  }
}
# ~/.hermes/config.yaml
mcp_servers:
  wyre-technology-xero-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/wyre-technology/xero-mcp:v1.5.5"]
// mcp.json
{
  "mcpServers": {
    "wyre-technology-xero-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/xero-mcp:v1.5.5"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 20 Aug 26 41

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 22 Aug 2026 · Analysed oci/ghcr.io/wyre-technology/xero-mcp:v1.5.5

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem oci
Reason No attestation published
MCP tools · 20 exposed · ~1,418 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
xero_accounts_get ~35

Get detailed information about a specific account by its ID.

NameTypeReqDescription
accountIdstringyesThe unique account ID (UUID)

No output schema declared.

No examples provided.

xero_accounts_list ~115

List chart of accounts in Xero. Optionally filter by account type or class.

NameTypeReqDescription
ClassstringFilter by account class
TypestringFilter by account type (e.g., "BANK", "REVENUE", "EXPENSE", "CURRENT", "FIXED", "EQUITY", "CURRLIAB", "TERMLIAB", "DIRECTCOSTS", "OVERHEADS", "DEPRECIATN", "OTHERINCOME", "SALES")

No output schema declared.

No examples provided.

xero_back ~26

Return to domain selection (no-op in flattened mode). All tools are always available.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

xero_contacts_create ~145

Create a new contact in Xero. Name is required; other fields are optional.

NameTypeReqDescription
AccountNumberstringAccount number for the contact
EmailAddressstringContact email address
FirstNamestringContact first name
IsCustomerbooleanWhether the contact is a customer
IsSupplierbooleanWhether the contact is a supplier
LastNamestringContact last name
NamestringyesContact name (required)
PhonestringContact phone number
TaxNumberstringTax number (ABN in Australia, GST in NZ, VAT in UK)

No output schema declared.

No examples provided.

xero_contacts_get ~48

Get detailed information about a specific contact by its ID. Returns full contact profile including addresses, phone numbers, and email.

NameTypeReqDescription
contactIdstringyesThe unique contact ID (UUID)

No output schema declared.

No examples provided.

xero_contacts_list ~86

List contacts in Xero with pagination. Optionally filter using a where clause. Returns contact details including name, email, and addresses.

NameTypeReqDescription
pagenumberPage number (1-based, default: 1). Each page returns up to 100 contacts.
wherestringOptional Xero where clause filter (e.g., 'ContactStatus=="ACTIVE"')

No output schema declared.

No examples provided.

xero_contacts_search ~38

Search contacts by name. Returns contacts whose name contains the search term.

NameTypeReqDescription
termstringyesSearch term to match against contact names

No output schema declared.

No examples provided.

xero_invoices_create ~157

Create a new invoice in Xero. Requires type, contact, and at least one line item.

NameTypeReqDescription
ContactIDstringyesThe contact ID to create the invoice for (required)
DatestringInvoice date in YYYY-MM-DD format
DueDatestringDue date in YYYY-MM-DD format
LineItemsarrayyesArray of line items (required). Each item needs Description, Quantity, UnitAmount, and AccountCode.
ReferencestringInvoice reference/PO number
StatusstringInitial invoice status (default: DRAFT)
TypestringyesInvoice type: ACCREC (sales invoice) or ACCPAY (bill) (required)

No output schema declared.

No examples provided.

xero_invoices_get ~50

Get detailed information about a specific invoice by its ID. Returns full invoice details including line items, amounts, and payment status.

NameTypeReqDescription
invoiceIdstringyesThe unique invoice ID (UUID)

No output schema declared.

No examples provided.

xero_invoices_list ~105

List invoices in Xero with pagination. Optionally filter by status and type (ACCREC for sales, ACCPAY for bills).

NameTypeReqDescription
StatusstringFilter by invoice status
TypestringFilter by invoice type: ACCREC (accounts receivable / sales invoices) or ACCPAY (accounts payable / bills)
pagenumberPage number (1-based, default: 1). Each page returns up to 100 invoices.

No output schema declared.

No examples provided.

xero_invoices_update_status ~60

Update the status of an existing invoice. Can submit, authorise, or void an invoice.

NameTypeReqDescription
StatusstringyesNew status for the invoice (required)
invoiceIdstringyesThe invoice ID to update (required)

No output schema declared.

No examples provided.

xero_navigate ~152

Discover available Xero tools by domain. Returns tool names and descriptions for the selected domain. All tools are callable at any time — this is a help/discovery aid, not a prerequisite.

NameTypeReqDescription
domainstringyesThe domain to explore: - contacts: Contact management - list, get, create, and search contacts (customers and suppliers) - invoices: Invoice management - list, get, create invoices and update their s…

No output schema declared.

No examples provided.

xero_payments_create ~100

Create a new payment in Xero. Records a payment against an invoice.

NameTypeReqDescription
AccountIDstringyesThe bank account ID the payment is made from/to (required)
AmountnumberyesPayment amount (required)
DatestringyesPayment date in YYYY-MM-DD format (required)
InvoiceIDstringyesThe invoice ID to apply the payment to (required)
ReferencestringPayment reference

No output schema declared.

No examples provided.

xero_payments_get ~36

Get detailed information about a specific payment by its ID.

NameTypeReqDescription
paymentIdstringyesThe unique payment ID (UUID)

No output schema declared.

No examples provided.

xero_payments_list ~62

List payments in Xero with pagination. Optionally filter by status.

NameTypeReqDescription
StatusstringFilter by payment status
pagenumberPage number (1-based, default: 1). Each page returns up to 100 payments.

No output schema declared.

No examples provided.

xero_reports_aged_payables ~43

Get an Aged Payables report showing outstanding supplier bills by age.

NameTypeReqDescription
datestringyesReport date in YYYY-MM-DD format (required)

No output schema declared.

No examples provided.

xero_reports_aged_receivables ~45

Get an Aged Receivables report showing outstanding customer invoices by age.

NameTypeReqDescription
datestringyesReport date in YYYY-MM-DD format (required)

No output schema declared.

No examples provided.

xero_reports_balance_sheet ~38

Get a Balance Sheet report as of a specific date.

NameTypeReqDescription
datestringyesReport date in YYYY-MM-DD format (required)

No output schema declared.

No examples provided.

xero_reports_profit_and_loss ~61

Get a Profit and Loss (income statement) report for a date range.

NameTypeReqDescription
fromDatestringyesStart date in YYYY-MM-DD format (required)
toDatestringyesEnd date in YYYY-MM-DD format (required)

No output schema declared.

No examples provided.

xero_status ~16

Show credentials status and available domains

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.