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.

io.github.theluckystrike/expense-tracker-receipts-mileage

MCPB · EXPENSE-TRACKER.MCPB · 2 COMPONENTS · SCANNED SEP 20

Log expenses, receipts and mileage from chat: auto-categorise, split VAT, summarise, export, rebill.

46 Trust /100
Trust breakdown (7 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 → Why this is hard to score →

Supply Chain Security23
  • Malware scan not yet available for this package.Unverified
  • Known CVEs were checked across the 105 of 105 dependencies we could resolve, so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • 40 of 105 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability79
  • 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
  • Context-footprint check failed: tool/resource definitions use about 2389 tokens (~159/item across 15 items; 14 tools + 1 resources), over budget; trim descriptions and params. See how to fix → Fail
  • 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 Coverage91
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 72% of tool parameters carry a description.Partial
Tool Safety75
  • No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.Pass
  • 0 of 1 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "expense_delete" implies "delete" and declares no destructiveHint at all, which the MCP spec reads as destructive by default. See how to fix → Fail
  • An AI judge read all 15 captured unit(s) of tool text and found none that tries to manipulate the model reading it.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: 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.

mcpb · expense-tracker.mcpb

Download bundle
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.

  • 17 Sept 26 46

    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 20 Sept 2026 · Analysed mcpb/https://github.com/theluckystrike/mcp-servers/releases/download/v0.22.0/expense-tracker.mcpb@0.22.0

Provenance No attestation

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

Result No attestation
Ecosystem mcpb

Background: How many MCP packages publish verified provenance →

Dependencies 105 packages
Packages resolved 105
Stale 40
Tree resolution Complete

Background: SBOMs and build attestations, explained →

MCP tools · 14 exposed · ~2,367 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. A tool's description is untrusted text the model reads on every call, which is what makes this list a security surface and not just an inventory: how tool poisoning works →

Tool Tokens
category_rules ~82

Replace the merchant-to-category rules, or call with no rules to list them. Returns the stored rule list. The rules are applied by expense_add whenever a call gives no category of its own.

NameTypeReqDescription
rulesarrayThe FULL rule list; it replaces the stored one, so include the rules you want to keep. Omit to list the current rules instead

No output schema declared.

No examples provided.

expense_add ~338

Record one expense and return its id, its net/VAT split and its billable flag. The response states every default that was applied, so the caller can see what was assumed rather than having to guess.

NameTypeReqDescription
amountnumberyesGross amount on the receipt, in major units, e.g. 12.34. It is stored as integer minor units in the expense's own currency, so nothing is lost to floating point.
billablebooleanRebillable to the client. Default: true when project is given (a receipt booked to a client project is normally rebilled), false otherwise. Pass it explicitly to override.
categorystringCategory, e.g. software, travel, office. Omit and the stored category rules are matched against the merchant to fill it in
currencystringISO code. Defaults to your expense_settings default_currency, else the shared business profile's default_currency, else EUR
datestringISO date YYYY-MM-DD, default today
merchantstringWho was paid, e.g. Adobe
notestring
projectstringProject or client this belongs to
receipt_pathstringAbsolute path to the receipt file; it is checked and hashed
tax_ratenumberAlias for vat_rate
vatnumberAlias for vat_rate
vat_ratenumberVAT percent already included in amount; it splits the gross into net and VAT. Omit to use the expense_settings default, or get no split at all when none is set

No output schema declared.

No examples provided.

expense_delete ~55

Delete one expense by id and report what went. The receipt FILE stays on disk. Deleting a rebilled expense loses the record of what an invoice charged, so correct it with expense_update instead.

NameTypeReqDescription
idstringyes

No output schema declared.

No examples provided.

expense_export ~136

Call this tool to write manually logged receipts to a csv, xlsx or json file. Returns the path. Bank transactions for the period are exported by bank-statement's statement_export tool, not this one.

NameTypeReqDescription
billableboolean
categorystring
formatstringyes
fromstringyesISO date, inclusive
pathstringAbsolute path to write to; a leading ~ is expanded and missing parent directories are created. Default is an exports folder in the server data directory
projectstring
tostringyesISO date, inclusive

No output schema declared.

No examples provided.

expense_list ~98

List expenses in a date range with each one's net/VAT split, category, merchant, project and billable flag, plus a total per currency. Free reads the last 30 days and says when your range predates it.

NameTypeReqDescription
billableboolean
categorystring
fromstringISO date, inclusive
projectstring
tostringISO date, inclusive

No output schema declared.

No examples provided.

expense_mark_rebilled ~200

Mark expenses as rebilled once the invoice that carries them actually exists. Pass the expense_ids of one currency group from expense_to_invoice, or that project, date range and currency. Returns what was marked.

NameTypeReqDescription
currencystringRequired when marking by range: one invoice carries one currency. A range marks only billable, not-yet-rebilled expenses in this one currency, so invoicing the EUR group cannot mark the PLN one
fromstringISO date, inclusive
idsarrayExpense ids, as returned per currency by expense_to_invoice. Takes precedence over project/from/to
invoice_numberstringyesInvoice the expenses were billed on. Required: the marker records WHICH invoice carries each expense, and it is stored on every expense marked
projectstringProject rebilled, used with from, to and currency
tostringISO date, inclusive

No output schema declared.

No examples provided.

expense_settings ~145

Read or set the defaults expense_add uses when a call does not name them: default_vat_rate and default_currency. Returns the stored defaults. Call with no arguments to read them without changing anything.

NameTypeReqDescription
default_currencystringISO 4217 code to assume when a call gives none, e.g. EUR. Default EUR
default_vat_ratenumberVAT percent already included in a receipt, e.g. 23 in Poland, 19 in Germany. Set it once and every later expense gets its net/VAT split without the caller repeating the rate. It applies when the expe…

No output schema declared.

No examples provided.

expense_summary ~103

Totals for a date range grouped by category, project, month or merchant, per currency with gross, net and VAT, never mixed. Receipts only; bank transactions are totalled by bank-statement's statement_summary.

NameTypeReqDescription
billableboolean
fromstringyesISO date, inclusive
group_bystringyesHow to group the totals
projectstring
tostringyesISO date, inclusive

No output schema declared.

No examples provided.

expense_to_invoice ~433

Preview the unbilled billable expenses of one project as invoice_create line items (description, quantity, unit_price, tax_rate), grouped per currency. Read-only: nothing is marked rebilled here.

NameTypeReqDescription
assume_vat_ratenumberSplit expenses that recorded NO VAT rate at this percent, flagged in the description. Only applied when you pass it here. An expense with no rate holds a GROSS amount and is otherwise rebilled as-is…
fromstringyesISO date, inclusive
fx_ratesobjectRate per source currency, meaning 1 unit of that currency = X units of target_currency, e.g. {"EUR": 1.08, "GBP": 1.27}. You supply the rate; nothing here fetches or guesses one. Omit it when the ran…
include_rebilledbooleanInclude expenses already marked as rebilled, default false
markup_percentnumberPercent added to each net amount. Every line's unit_price is the NET amount and its tax_rate is the VAT rate recorded on the expense, so the invoice recomputes the same tax instead of charging it twi…
projectstringyesProject or client to rebill
target_currencystringConvert every line into this currency and return ONE group, e.g. "USD". Needs fx_rates for each other currency present. Lines are otherwise grouped per currency, because one invoice carries one curre…
tostringyesISO date, inclusive

No output schema declared.

No examples provided.

expense_update ~194

Change one expense by id; only the fields you pass move. amount is in MAJOR units. A rebilled expense refuses an amount, currency or vat_rate edit unless unlink_rebill drops the invoice link.

NameTypeReqDescription
amountnumber
billableboolean
categorystring
currencystring
datestring
idstringyesExpense id from expense_add or expense_list
merchantstring
notestring
projectstring
rebilledbooleanfalse clears the rebilled marker and the invoice number, so the expense can be billed again
unlink_rebillbooleanAllow editing amount, currency or vat_rate on a rebilled expense. Clears rebilled_at and rebilled_invoice, because the invoice no longer matches
vat_ratenumber

No output schema declared.

No examples provided.

license_activate ~71

Activate a Pro key (MCPL1.xxx.yyy) from checkout: verified offline against a built-in public key, saved to your config file. A wrong, malformed or expired key is refused, unsaved. license_status reads it back.

NameTypeReqDescription
keystringyesLicense key from the checkout confirmation page

No output schema declared.

No examples provided.

license_status ~54

Report this server's licence state: product, tier free or pro, licence id, expiry, the key source and the upgrade URL. No arguments, no network. Explains a free-tier refusal; license_activate installs a key.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

mileage_add ~359

Record a business trip as an expense, priced as distance x rate. Give exactly one of km or miles. Returns the saved id with the rate used, where that rate came from and the money, in the rate's own currency.

NameTypeReqDescription
billablebooleanWhether the trip is rebilled to the client. Default true, so a mileage claim reaches expense_to_invoice unless you pass false
currencystringCurrency for your own rate. Only accepted together with rate_per_km; a table rate keeps the table currency
datestringISO date, default today
kmnumberDistance in kilometres. Give exactly one of km or miles
milesnumberDistance in miles. Give exactly one of km or miles
projectstringBill the trip to a client or project - use the same name you use in time-tracker and expense_add. Without it the drive is invisible to expense_summary by project and to expense_to_invoice
purposestringyesWhy the trip was made, e.g. client meeting in Krakow
rate_per_kmnumberYour own rate per supplied unit, overriding the table. Pass it whenever you need your exact scheme rather than the approximate table rate
regionstringWhich built-in table rate to use: PL 1.15 PLN/km, UK 0.45 GBP/mile, US 0.70 USD/mile, EU 0.30 EUR/km. Default US for miles, EU for km. Each is one flat approximate rate per region with no effective d…

No output schema declared.

No examples provided.

receipt_attach ~99

Call this tool to attach a receipt file to a stored expense. Returns the stored path and sha256. The file must exist; it is hashed so a later audit can prove the file has not changed.

NameTypeReqDescription
idstringyesExpense id from expense_add or expense_list
pathstringyesPath to the receipt file. It must already exist; a leading ~ is expanded. The path and its sha256 are stored on the expense

No output schema declared.

No examples provided.

Common questions

What is the io.github.theluckystrike/expense-tracker-receipts-mileage MCP server?

io.github.theluckystrike/expense-tracker-receipts-mileage is an MCP server listed in the public MCP registry as io.github.theluckystrike/expense-tracker-receipts-mileage. Log expenses, receipts and mileage from chat: auto-categorise, split VAT, summarise, export, rebill. This page covers its MCPB bundle (https://github.com/theluckystrike/mcp-servers/releases/download/v0.22.0/expense-tracker.mcpb).

Is the io.github.theluckystrike/expense-tracker-receipts-mileage MCP server safe to use?

io.github.theluckystrike/expense-tracker-receipts-mileage scores 46 out of 100 on VerifyMCP. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

What tools does the io.github.theluckystrike/expense-tracker-receipts-mileage MCP server expose?

io.github.theluckystrike/expense-tracker-receipts-mileage exposes 14 tools: expense_add, expense_list, expense_update, expense_delete, receipt_attach, and 9 more. Their descriptions and schemas cost roughly 2,367 tokens of context every time the server is loaded.

What licence is the io.github.theluckystrike/expense-tracker-receipts-mileage MCP server under?

io.github.theluckystrike/expense-tracker-receipts-mileage declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.