billy-mcp (Thourum/billy-mcp) is an MCP server listed on the M8ven Trust Index. It scores 74 out of 100, grade C. It declares 40 tools. No publisher has claimed this listing.
Connects AI assistants to the Danish accounting platform Billy (billy.dk) for managing invoices, journal entries, balances, and receipts, with built-in human approval for all write operations.
Emerging. No concerning findings. Grades remain capped until the project builds reputation through adoption. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.
How we verified
Verified is a snapshot. Live keeps it current, and builds your track record.
⚡ Connect GitHub → continuous verification on every pushwhy connect →Who stands behind it
Thourum
Source: Glama
Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →
Install from
The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.
These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.
list_accountsList the chart of accounts in Billy. Use this to find account IDs for bill lines, product revenue accounts, and bank accounts for payments (look for isPaymentEnabled/isBankAccount).
get_accountGet a single account from the Billy chart of accounts by ID.
list_daybook_transactionsList daybook transactions (manual journal entries) in Billy, filterable by state and entry date range.
list_filesList files uploaded to Billy (receipts, invoices PDFs, etc.). Files are append-only via the API.
list_attachmentsList attachments (file↔record links). Filter by owner to see what's attached to a specific record; ownerReference is applied client-side within the page.
upload_fileUpload a local file (pdf/jpg/jpeg/png/gif ONLY — Billy rejects other types with a 422) to Billy and get its file ID. Files are append-only: they cannot be deleted or modified via the API afterwards. Use attach_file to link the uploaded file to a record.
attach_fileAttach an uploaded file to a Billy record (daybook transaction, invoice, or bill). Get the fileId from upload_file or list_files. Example: attach a receipt to journal entry #67 → ownerType 'daybookTransaction', ownerId '<transaction id>'.
list_billsList supplier bills (expenses) in Billy with filters for supplier, state, paid status, date range and free-text search.
get_billGet a single Billy bill by ID, including its lines, balance and paid status.
create_billCreate a supplier bill (expense) in Billy with one or more lines coded to expense accounts. Created as draft by default; pass state=approved to book it immediately.
list_contactsList contacts (customers and suppliers) in Billy. Supports free-text search and filtering. Use this to find a contact ID before creating invoices or bills.
get_contactGet a single Billy contact by its ID, including full address and settings.
create_contactCreate a new contact (customer or supplier) in Billy. Returns the created contact including its ID.
update_contactUpdate an existing Billy contact. Only provided fields are changed.
list_contact_personsList contact persons (names/emails used for sending invoices) belonging to a Billy contact.
create_contact_personAdd a contact person (name and/or email) to an existing Billy contact. Emails are used to mail invoices.
list_daybooksList daybooks in Billy. Find the daybook ID used for manual journal entries.
create_daybook_transactionCreate a manual journal entry (daybook transaction) in Billy with balanced debit/credit lines. Validates balance client-side before asking for approval. Supports safe-retry deduplication via idempotencyKey. Created as draft by default; state=approved books it immediately.
void_daybook_transactionVoid a daybook transaction (journal entry) in Billy. Irreversible — voided entries cannot be reinstated.
batch_void_daybook_transactionsVoid many daybook transactions in one call with ONE user approval for the whole batch. Continues past individual failures and reports per-id results. Irreversible.
list_invoicesList invoices in Billy with filters for customer, state, date range and free-text search. Returns invoices plus meta.paging.
get_invoiceGet a single Billy invoice by ID, including its lines, balance and paid status.
create_invoiceCreate an invoice (or credit note) in Billy with one or more lines. Created as draft by default; pass state=approved to approve immediately (approval assigns the invoice number and books it). Amounts are in the invoice currency.
approve_invoiceApprove a draft Billy invoice (draft -> approved is the only allowed state change). Approval books the invoice; it cannot be reverted to draft.
delete_invoiceDelete a Billy invoice (drafts only; approved invoices must be voided/credited instead). Returns meta.deletedRecords.
billy_raw_requestEscape hatch: call any Billy API v2 endpoint not covered by a dedicated tool. Examples: GET /currencies, /countries, /taxRates, /salesTaxReturns, /invoiceReminders, /files, /bankLines, /postings, /users. Write requests must wrap the body in a singular resource key, e.g. { "daybookTransaction": {...}…
get_organizationGet the Billy organization (company) details: name, base currency, VAT settings, default payment terms, fiscal year, invoice numbering. Call this first to learn the organization ID and base currency used by other tools.
create_bank_paymentRecord a bank payment in Billy to mark an invoice or bill as (partially) paid. Creates a bankPayment associated with the subject via 'invoice:<id>' or 'bill:<id>'. For invoices money is deposited (debit); for bills it is withdrawn (credit). WARNING: this posts a real accounting transaction.
list_bank_paymentsList bank payments recorded in Billy. Useful to review what payments exist for reconciliation. NOTE: Billy only supports organizationId server-side for this endpoint; contactId/cashAccountId/date filters are applied client-side within the fetched page.
list_balance_modifiersList balance modifiers (payment associations) in Billy. Filter by subjectReference like 'invoice:<id>' or 'bill:<id>' to see which payments settled a specific invoice or bill. NOTE: subjectReference is not documented server-side; it is also enforced client-side within the fetched page.
list_productsList products in Billy. Use this to find a product ID before creating invoice lines. Supports free-text search.
get_productGet a single Billy product by ID, plus its per-currency prices.
create_productCreate a product in Billy, optionally with per-currency unit prices. Returns the created product including its ID.
update_productUpdate an existing Billy product. Only provided fields are changed. Providing prices replaces all existing prices.
get_account_balancesAccount balances / trial balance computed from postings. Ask "what is the balance of account 5211" → accountNos: ["5211"]. Omit account filters for a full trial balance. Bound with minEntryDate/maxEntryDate for speed — the tool fetches and aggregates all matching postings server-side.
list_postingsList ledger postings (individual debit/credit entries). For balances/aggregates use get_account_balances instead. Date/void/text filters are applied client-side within the fetched page — narrow with accountId.
list_transactionsList booked transactions. transactionNo/voucherNo filters are applied CLIENT-SIDE (Billy silently ignores them as query params) by scanning up to 5000 records — bound with dates when possible.
list_bank_linesList imported bank lines. Date and matched filters are applied client-side within the fetched page.
list_bank_line_matchesList bank line matches (bank reconciliation groupings). isApproved filter applied client-side within the page.
execute_scriptRun a short JavaScript (ES2022, top-level await allowed) batch script against the Billy API — use for loops, aggregation and reconciliation instead of many single tool calls (e.g. void 30 entries, post 7 monthly journals, sum postings). In scope: `billy` (get(path,query?), post(path,body), put(path,…
BILLY_ACCESS_TOKEN"": "<your token>"BILLY_BASE_URLno Defaults to https://api.billysbilling.com/v2BILLY_LOCALEno en_US, da_DK, fr_FR, nl_NL, de_DEBILLY_ORGANIZATION_IDno Auto-resolved when the token maps to one companyBILLY_WRITE_MODEEvery write (create/update/approve/void/pay/upload) is gated by :All four hints declared on every tool
40/40 tools missing one or more hints — list_accounts (missing: destructiveHint, idempotentHint, openWorldHint); get_account (missing: destructiveHint, idempotentHint, openWorldHint); list_daybook_transactions (missing: destructiveHint, idempotentHint, openWorldHint), +37 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.
For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.
Tests exist
No test files found
Add tests that exercise each declared tool.
Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.
[](https://m8ven.ai/mcp/thourum/billy-mcp)?variant=verified to the badge URL.Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.
https://m8ven.ai/api/mcp/tool-check