Labsco
MCP SERVER

Moneybird MCP Server

by vanderheijden86

Reach any Moneybird entity through three generic tools — list, get, or make the API request yourself.

Accounting, Invoicing & BookkeepingVerified
Summary
Three tools that never go stale, in exchange for the caller needing to know the entity name.

A wrapper with a tool per entity is easier to discover and is out of date the moment Moneybird adds something. Naming the entity as a parameter keeps the surface at three definitions and reaches everything, with the escape hatch for whatever the pattern does not fit. The cost is that a model has to know that 'sales_invoices' is what the thing is called, which the tool descriptions partly address by listing common paths. For a bookkeeping API where most work is reading, this is a reasonable trade — and worth noting that it is read-oriented, with writes going through the raw request.

What it is

A deliberately thin Moneybird client: rather than a tool per entity type, three generic tools reach contacts, sales invoices, estimates and the rest by naming the entity.

What you get
  • moneybird_list takes the entity type as a parameter, covering contacts, sales invoices, estimates and others through one call.
  • moneybird_get fetches a single entity by id.
  • moneybird_request makes a custom API request for anything the first two do not cover, with the common paths named in its description.
Requirements

MONEYBIRD_API_TOKEN and MONEYBIRD_ADMINISTRATION_ID — the administration id because a Moneybird account can hold several sets of books.

Setup effort

One command plus a key — npx moneybird-mcp-server, then supply credentials