reai-mcp
This server is an MCP interface to the ReAI Norwegian cloud accounting API, enabling AI agents to read accounting data and perform bookkeeping operations with robust safety controls.
Identity & tenant management: Authenticate and view accessible companies (
reai_whoami), switch active tenant for session (reai_use_tenant).Read-only bookkeeping: Search chart of accounts, list VAT codes, browse vouchers and postings, generate general ledger reports (opening balance, postings, closing balance per account), and fetch detailed voucher/account data.
Curated write operations (gated by
REAI_WRITE_MODE): Manage customers, suppliers, products, orders, offers, subscriptions, warehouses, departments, fixed assets; create/update/delete vouchers; handle bank reconciliations and VAT returns; adjust inventory, and more.Full API escape hatch: Search all 313+ public API endpoints (
reai_search_endpoints) using Norwegian or English keywords, inspect schemas (reai_describe_endpoint), and call any endpoint directly (reai_request) — including domains like payroll, Peppol, leads, agreements — with write policy enforcement.Safety & controls: Write mode (
read-only,reversible,full) controls which tools are available; irreversible actions require explicit escalation; external sends (EHF, invoice emails, bank transfers) requireREAI_ALLOW_EXTERNAL_SENDflag; voucher balance is validated locally; sensitive field changes (bank details) are always irreversible.Bank reconciliation UI: Optionally expose a manual pairing view (
reai_reconcile_ui) for matching bank transactions with ledger postings via MCP Apps.API insights: Built-in knowledge of ReAI API quirks and Norwegian language support enhances usability.
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., "@reai-mcpWhat did we spend on inventory this year, and which account is it on?"
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.
reai-mcp
An MCP server for ReAI, the Norwegian cloud accounting system — so an AI agent can read the books, look up accounts and VAT codes, and do real bookkeeping through the API.
Not affiliated with or endorsed by ReAI. Community-built, MIT licensed.
You: What did we spend on inventory this year, and which account is it on?
Agent: [reai_general_ledger] Account 1460 "Innkjøpte varer for videresalg" — 12 postings, closing balance 4 812,60 NOK.177 tools: 170 curated across thirteen accounting domains, plus 7 always-on — orientation, and a discovery escape hatch that reaches all 320 public API operations.
Two independent safety switches. One bounds what can be undone in the books; the other decides whether anything may leave the tenant at all. Both default to the cautious setting, and the first does not lift the second.
131 measured API quirks keyed to the operations they affect, so
reai_describe_endpointwarns you before the API rejects you.Discovery works in Norwegian — "lønnskjøring", "send fakturaen" — measured against three query corpora.
Self-hosted, and deliberately not on npm. Run it as local stdio, or deploy your own Streamable HTTP connector with OAuth 2.1. Nothing is published to the registry until it has been seen working against real books, so there is no
npx reai-mcpto copy.
Full reference material lives in docs/: every tool and what each domain actually does, the write policy in detail, the quirk registry, discovery, self-hosting, development and the live audit harnesses.
Why this exists
ReAI's API is genuinely good — 320 documented operations covering the whole accounting domain. But that is far too many to expose as 320 MCP tools: it would exhaust any client's tool budget and bury the agent in choices.
So this server does two things at once:
Curated tools for the operations that matter most, with real guardrails — account lookup, VAT codes, vouchers, postings, the general ledger. A voucher's debit/credit balance is checked before the request is sent, so you get a useful explanation instead of a generic
422.A discovery escape hatch —
reai_search_endpoints,reai_describe_endpointandreai_request— so nothing in the API is out of reach. Leads, agreements, subscriptions, assets, payroll, Peppol: all callable, with schemas on demand.
You get ergonomics where it counts and full coverage everywhere else.
Related MCP server: Inntektsportalen MCP
Safety: this writes to real accounting books
Accounting data is not ordinary application data. Under the Norwegian Bookkeeping Act (bokføringsloven), a voucher posted in a closed period cannot simply be deleted — it must be corrected with a reversing entry. A submitted VAT return cannot be unsubmitted.
An agent exploring an API by trial and error is therefore genuinely dangerous here, so every operation is classified and gated by REAI_WRITE_MODE:
Mode | Allows | Use it when |
|
| Reporting, analysis, letting an agent answer questions about the books |
| Reads, plus master data — customers, suppliers, products, departments, offers. NOT a promise of deletability: several of those archive instead once they carry references | Day-to-day agent work |
| Everything: ledger postings, invoices, payments, payroll, VAT returns | You are prepared to correct mistakes by hand |
Two properties make this more than a label:
Tools you cannot use are not advertised. In
reversiblemode the ledger-write tools are not registered at all, so the agent never sees them and cannot try.The escape hatch fails closed.
reai_requestclassifies each call by method and path. An unrecognised write path is treated as irreversible and blocked — so a future endpoint this server has never heard of cannot slip through as "probably fine". Dot segments cannot straddle two paths either:POST /api/customers/../vouchersis refused, not resolved.The body is inspected too, not just the path. Some payloads are more dangerous than their endpoint suggests: an order carrying
sendEhf: truearms Peppol transmission to a real counterparty, and a subscription withoutputMode: "create_invoice"issues numbered invoices on a schedule. Both escalate to irreversible.
The default is deliberately the middle setting, not the permissive one.
Both switches sit on one path, and a curated tool is not a softer route to the API than the escape hatch is — they converge on the same gates, in this order:
curated tool (170) ---+
+---> 1. write policy .......... REAI_WRITE_MODE
reai_request (320) ---+ 2. external-send gate .... REAI_ALLOW_EXTERNAL_SEND ---> ReAI API
3. PUT omission gate ..... reai_request onlyThe write policy speaks first, so a call the mode forbids is refused for that reason rather than for
a send it also happens to arm. Of the 18 public operations classified as reaching a third party, 17
are also classified irreversible — the exception is GET /vat-return/altinn-sync, which is read-shaped and
whose NAME says it talks to Altinn. Measured 2026-08-11, an API token cannot: it answers 302 to
/auth/login, because that path is the web application's own route rather than an API endpoint. The gate stays
anyway — see TRANSMITTING_GETS for why removing a guard because a route is currently unreachable is
backwards. So the two switches are not redundant in either direction:
turning on external send grants almost nothing by itself, and full alone reaches nothing that
leaves the tenant.
That asymmetry is the whole reason there are two switches rather than one setting with six values:
REAI_ALLOW_EXTERNAL_SEND
off (default) 1
+-------------------------------+----------------------------+
read-only | read the books | + altinn-sync (see above: |
| | a token gets a redirect) |
+-------------------------------+----------------------------+
reversible | + master data (may ARCHIVE | nothing more — 17 of the |
(default) | rather than delete) | 18 sends are ALSO |
| | irreversible |
+-------------------------------+----------------------------+
full | + the ledger, VAT settlement, | + issuing invoices, EHF/ |
| asset write-offs, draft | Peppol, invoice email, |
REAI_WRITE_MODE | payroll runs | reminders, the a-melding,|
| | the tax return, users |
+-------------------------------+----------------------------+Two measured cases shaped that classification, and both are worth reading before running anything in
full. The first is a pair of endpoints: a full replacement can erase where money goes by leaving
it out. PUT /api/company-banks/{id} carrying {name, countryCode, currency} — which is what a
rename looks like — answers 200 and empties the account number its own customers pay into. Sweeping
the document turned up 31 public PUTs that can clear a documented field by omission, so
reai_request now refuses one rather than reporting it afterwards, and the curated tools read and
merge instead: docs/safety.md.
The second is a field set rather than a pair of endpoints, and it has its own section.
Changing where money goes is treated as irreversible
A few fields are ordinary master data as records and permanent as consequences. Undoing the edit
is trivial; undoing what follows is not, because it happens later and through someone acting
perfectly normally. Nine of them name a bank account — iban, bankAccountNumber, swiftCode,
swiftBic, routingNumber, accountNumber, bban, rentAccountNumber, depositAccountNumber —
and one, invoiceEmail, names where invoices are delivered.
A call carrying any of them, on any of the paths that accept them, is classified irreversible and
refused in the default mode, through the curated tools and reai_request alike, even though the
endpoint itself is otherwise reversible. Every other field on the same tool is unaffected: renaming a
supplier still works in reversible. Adding a company bank stays ordinary work; repointing an
existing one does not — and on an employee the field is their salary, paid on a schedule by machinery
nobody re-reads each month.
The exact field set, which paths it reaches, what happens later in each case, and why emptying an
invoiceEmail counts as much as setting one are in
docs/safety.md. The table is
not maintained by hand: test/payment-routing.test.mjs reads the OpenAPI document on every run and
fails the build on a routing-shaped field name that is neither treated as a destination nor
explicitly exempted with its evidence — which is how employees, swiftBic, routingNumber and a
lease's two escrow accounts were found missing from it.
Sending things to other people is a separate switch
REAI_WRITE_MODE answers what can be undone in the books. It deliberately does not answer does this reach someone else — those are different questions, and one setting cannot serve both.
So REAI_ALLOW_EXTERNAL_SEND gates everything that leaves the tenant, independently of the write mode:
EHF/Peppol transmission, and any order carrying
sendEhf: trueInvoice email, payment reminders, agreement signing requests
Issuing a customer invoice —
POST /api/invoicesstarts delivery asynchronously (eFaktura, then EHF, then PDF by email), so it is not a books-only operationGovernment filings: the tax return, and completing a payroll run (the a-melding)
Granting a user access —
POST /api/userscreates apending_invitationwith aninvitationIdand an expiry, which reaches the invitee by email. What it sends is not data but privilege:roleCodeacceptsROLE_TENANT_ADMIN, to an address the caller choosesA bank-integrated supplier payment —
manualPayment: falsecan return anapprovalUrlthat starts a real BankID transfer.manualPayment: truerecords a payment that has already left the bank and needs nothing
It is off by default, and REAI_WRITE_MODE=full does not lift it. A posting can be reversed; an invoice that has gone over Peppol cannot be recalled.
Turn it on if this deployment does your invoicing. That is the ordinary case and the reason an accounting integration exists:
REAI_WRITE_MODE=full
REAI_ALLOW_EXTERNAL_SEND=1Leave it off while evaluating, or when working against books whose real counterparties should not hear from you — which is exactly the situation when there is no sandbox and you are testing against a live company. The combination full + no external send is a genuinely useful place to be: the agent can do real bookkeeping and still cannot email anybody.
Install
Requires Node.js 20 or newer, and a ReAI API token (app.reai.no → settings → API tokens).
There is no npm package
reai-mcp is deliberately unpublished: nothing goes to the registry until this has been seen
working against real books, and the CHANGELOG says so too. Install from source, or build the Docker
image for a remote deployment. Any npx -y reai-mcp recipe you find is wrong — the name does not
resolve.
git clone https://github.com/Stener1/reai-mcp.git
cd reai-mcp
npm install
npm run buildThat leaves an executable server at dist/index.js. Started with no token it exits non-zero and
names the missing variable, which CI asserts on every push.
Claude Code
claude mcp add reai --env REAI_USER_API_TOKEN=your-token -- node /absolute/path/to/reai-mcp/dist/index.jsClaude Desktop / Cursor / any stdio client
{
"mcpServers": {
"reai": {
"command": "node",
"args": ["/absolute/path/to/reai-mcp/dist/index.js"],
"env": {
"REAI_USER_API_TOKEN": "your-token",
"REAI_WRITE_MODE": "reversible"
}
}
}
}An absolute path is required: the client's working directory is not yours.
Verify it works
REAI_USER_API_TOKEN=your-token npm run smokeThis launches the server as a real MCP client would, then exercises read-only tools against the live API and asserts that the write policy blocks a ledger write. It touches nothing, so it is safe against production books.
Which kind of token you have matters
ReAI issues both kinds, and the API behaves differently for each — the OpenAPI spec says X-Tenant-Id is "required for tenant-scoped requests when authenticating with a user access token", and GET /api/me returns "the tenants available to the token".
tenant-scoped token | user-scoped token | |
| exactly one company | every company the user can open |
| ignored when the token reaches one company — any value, even a nonexistent id, returns that company's data | required on every tenant-scoped call, and honoured |
| nothing to switch to | selects which company you are working in |
A user-scoped token is what makes this worth running for an accountant: one connection reaching every
client company, with reai_whoami listing them and reai_use_tenant moving between them. What
reai_whoami can and cannot tell you about which kind you hold — GET /api/me has no field that
distinguishes them — is in docs/tools.md.
The safety consequence cuts the other way, and is why a remote connector binds one company at authorization time rather than handing an agent all thirty because it was asked about one: docs/self-hosting.md.
First steps with an agent
Almost every endpoint is tenant-scoped — the tenant id selects which company's books you are in — so start there:
reai_whoami— who the token belongs to, and which companies it reaches.reai_use_tenant— pick one for the session. Validated against the real list, so a typo fails immediately instead of silently writing into the wrong company.
Then work normally. Set REAI_TENANT_ID to skip step 2.
Tools
7 tools are always on: reai_whoami and reai_use_tenant for orientation, and the escape hatch —
reai_list_api_tags, reai_search_endpoints, reai_describe_endpoint, reai_api_notes and
reai_request — which between them reach all 320 public operations. They cannot be disabled, so a
narrowed server still reaches everything.
The other 170 are curated, in thirteen groups. docs/tools.md is the reference: every tool with its purpose and its risk classification, and per domain what driving it against live books actually turned out to do.
Group | What it covers |
The chart of accounts, VAT codes, vouchers, postings, the general ledger, sub-accounts | |
Customers and their contact people, products, orders, offers, invoices, the customer ledger, and lead prospecting against Brønnøysund | |
Suppliers, supplier invoices, the document inbox, EHF parsing, employee expense claims | |
Company bank accounts, reconciliation both synced and manual, booking rules, the tax return, settling a VAT term | |
Departments, employees and the employee ledger, users, roles and permissions | |
The anleggsmidler register, depreciation schedules, write-offs | |
Recurring billing, its history, and whether it goes out on its own | |
Warehouses, stock on hand per variant, inventory adjustments | |
Leases, employment contracts, purchase and service agreements, signing status | |
Salary runs and their wage lines. Completing a run is deliberately not a tool | |
Country and currency codes, the opening balance, annual-accounts status | |
Loans borrowed and lent, and the creditors and debtors at each end | |
The portfolio and its events — purchases, sales, dividends, write-downs |
Three tools are documented together, apart from their domains, because they exist for one reason: to
stop a rename destroying a payment destination
(docs/tools.md). That is a
documentation grouping only — reai_update_company_bank belongs to bank,
reai_set_supplier_address to purchase and reai_update_creditor to loans, they are inside the
170, and narrowing with REAI_TOOLSETS enables each one with its own domain. One tool genuinely is
outside all thirteen: reai_reconcile_ui is off unless REAI_ENABLE_UI=1, because it is the only view here, and the only
payload in this API that does not fit comfortably in text
(why).
Anything not listed — projects, timesheets, documents — is reachable through
reai_search_endpoints + reai_request, and carries its known quirks automatically.
If 177 tools is more than your client wants to see, narrow it with REAI_TOOLSETS — list only
the groups you want. Each count below includes the 7 always-on tools:
REAI_TOOLSETS=bookkeeping # 19 tools
REAI_TOOLSETS=bookkeeping,sales # 56 tools
REAI_TOOLSETS=purchase # 33 tools
REAI_TOOLSETS=bank # 25 tools
REAI_TOOLSETS=organisation # 25 tools
REAI_TOOLSETS=assets # 13 tools
REAI_TOOLSETS=subscriptions # 16 tools
REAI_TOOLSETS=warehouses # 14 tools
REAI_TOOLSETS=agreements # 13 tools
REAI_TOOLSETS=salary # 14 tools
REAI_TOOLSETS=reference # 11 tools
REAI_TOOLSETS=loans # 20 tools
REAI_TOOLSETS=investments # 14 tools
(unset) # all 177Valid groups are bookkeeping, sales, purchase, bank, organisation, assets, subscriptions, warehouses, agreements, salary, reference, loans and investments; listing all thirteen is the same as leaving it unset. Orientation and discovery are never disabled, so a narrowed server still reaches every endpoint through reai_search_endpoints + reai_request.
Configuration
Variable | Default | Purpose |
| — | Required. ReAI user API token. |
| — | Default tenant, so |
|
|
|
| off | Permit anything that reaches a third party: EHF/Peppol, invoice email, reminders, signing requests, issuing an invoice, government filings, a user invitation, and a bank-integrated supplier payment. Enable this for a business doing its own invoicing — see below |
|
| Override for a staging environment |
|
| Per-request timeout |
|
| Retries on 429/502/503/504, with exponential backoff and jitter |
| off | Log one line per API request to stderr. Never logs tokens |
See .env.example for the annotated version. REAI_TOOLSETS is described
above; REAI_ENABLE_UI under the one UI surface; and
the variables that only matter to a remote deployment — PORT, PUBLIC_URL, REAI_ENCRYPTION_KEY,
REAI_ALLOWED_HOSTS, REAI_ALLOWED_REDIRECT_HOSTS, REAI_ALLOW_TOKEN_PASSTHROUGH — are in
docs/self-hosting.md.
API quirks worth knowing
Most of what this server knows about ReAI was learned from a rejected request rather than from
reading the spec. Rather than leave that in commit messages, it lives in
src/reai/quirks.ts as 131 quirks keyed to the operations they affect — so
they surface automatically in reai_describe_endpoint and reai_search_endpoints, including for the
131 public operations no curated tool covers. A test asserts every quirk still matches a real
operation in the spec, so they cannot quietly rot as the API changes.
Four to give the flavour: an invoice is created from an order, not from line items; there is no
endpoint that lists bank transactions; period on a VAT return is a two-month term index, so passing
4 for April locks Jul–Aug; and a 403 is usually a disabled module rather than a permissions
problem. Browse them from an agent with reai_api_notes, or read the whole registry as prose in
docs/api-quirks.md.
Discovery works in Norwegian
This is a Norwegian accounting system and its users type Norwegian, where the definite article is a
suffix and nouns glue together — so "lønnskjøring", "varelager" and "send fakturaen" have to
resolve to endpoints whose paths are in English. They do, and the definite article is handled rather
than hoped for: the suffixes -n, -ne, -en and -et are stripped and retried whenever the
remaining stem is a word the synonym table already knows, so kunden, ordren, utgiften and
dokumentet all resolve — and a test asserts inflection does not change the rank, not merely that
something comes back. A stem-changing definite (anleggsmiddel → anleggsmidlet, which drops a
vowel) is still out of reach, and the test names that case rather than omitting it.
On a 31-query bilingual set — 21 Norwegian, 10 English — all 31 find their endpoint and 28 of them rank
it in the top three. Three further corpora hold the measurement as regression floors in
test/discovery-heldout.test.mjs, each scored once before anything was tuned against it, because a
benchmark whose failures you have read is no longer measuring anything.
docs/discovery.md has those numbers, the four causes that were fixed, why the
stem gate is load-bearing rather than precautionary, and the sweep that answers "what did this
ranking change do to every other query".
Self-hosting as a remote connector
The same server speaks MCP over Streamable HTTP, so it can be added as a custom connector rather than spawned locally. There is no hosted instance — you run your own, which means your ReAI token never leaves infrastructure you control. It implements OAuth 2.1 as its own authorization server (dynamic client registration, PKCE, refresh tokens) and bridges that to ReAI's static API tokens: the user pastes a ReAI token on the consent page, and the server seals it into its own access tokens, so there is no session database and a scale-to-zero deployment works.
./scripts/deploy-cloud-run.sh --project my-gcp-projectRemotely, the write ceiling is composed rather than chosen once. A grant is sealed at
authorization time carrying the mode the user picked on the consent page, and every request applies
whichever of that and the server's current REAI_WRITE_MODE is narrower — so tightening the
deployment binds tokens that were already issued, and a permissive server never widens a grant
somebody deliberately narrowed:
docs/safety.md.
Docker, the Cloud Run script's three easy-to-get-wrong steps, why an authorization is bound to one company and cannot address another, an honest account of what locking a public connector down can and cannot achieve, how the OAuth flow is verified end to end, and the remote-only environment variables are all in docs/self-hosting.md.
The MCP endpoint also enforces two transport ceilings, both well above any real tool call: an 8 MB
request body and a 50-message JSON-RPC batch. Each has a surprise in it worth reading before
diagnosing one as a network fault — an oversized body does not reliably get a 413, and GET /mcp
answers 405 on purpose, not by omission:
docs/self-hosting.md.
Development
npm install
npm run build # rebuild the spec index, then compile
npm test # build + the unit suite (no credentials needed)
npm run typecheck
npm run smoke # read-only, end-to-end against the live API (needs a token)Unit tests cover the write-policy classifier, the discovery ranker, spec search/describe, the OAuth
server and every curated tool's request shaping, and need no network access or credentials.
docs/development.md covers adding a tool, running CI's whole matrix locally,
refreshing the pinned OpenAPI snapshot, and the live harnesses — which refuse to run unless the
tenant is named in REAI_WRITE_TEST_TENANTS, because a --tenant flag is not consent.
Because there is no sandbox, the documented claims are re-checked against live books rather than trusted: four audit harnesses ask whether the refusals, the stored values and the 131 quirks still say what this repository says they say, and each one has found something false. docs/audits.md has what each covers, what it deliberately does not, and what it found.
Contributing
Issues and PRs welcome. Adding a curated tool is deliberately mechanical, and
docs/development.md has the three steps. Declaring
risk correctly is the part that matters — it is what gates the tool behind REAI_WRITE_MODE.
Changelog
See CHANGELOG.md, which also records the known limitations — tokens cannot be individually revoked, path-prefix deployments are unsupported, and the irreversible write paths have not been exercised end to end against live books because ReAI has no sandbox.
License
MIT — see LICENSE.
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
- AlicenseBqualityDmaintenanceA read-only MCP server that exposes Fiken accounting API's 61 GET endpoints as tools for AI assistants to query accounting data.61143MIT
- FlicenseNot gradedqualityCmaintenanceMCP server that enables AI assistants to securely access and manage personal financial data from Inntektsportalen (Norwegian income portal) with fine-grained scope-based authorization via OAuth2.
- AlicenseNot gradedqualityDmaintenanceMCP server providing deterministic accounting tools for AI agents, including bank statement parsing, document classification, money math, and webhook verification.1Apache 2.0
- FlicenseNot gradedqualityBmaintenanceMulti-tenant MCP server connecting accounting software to AI assistants via ~87 tools. Supports Bokio (Swedish accounting) with mock mode for development.
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
MCP server exposing the Backtest360 engine API as tools for AI agents.
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/Stener1/reai-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server