# io.github.theluckystrike/petty-cash (mcpb · petty-cash.mcpb)

A petty cash float on the imprest system: vouchers, reconciliation and the replenishment.

- Trust score: 48/100 (low)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-21

## Components

- remote · `mcp.zovo.one`: 85/100, [markdown](https://verifymcp.io/servers/theluckystrike-petty-cash/mcp-petty-cash.md), [page](https://verifymcp.io/servers/theluckystrike-petty-cash/mcp-petty-cash)
- mcpb · `petty-cash.mcpb`: 48/100 (this document), [markdown](https://verifymcp.io/servers/theluckystrike-petty-cash/https-github-com-theluckystrike-mcp-servers-releases-download-v0-22-0-petty-cash.md), [page](https://verifymcp.io/servers/theluckystrike-petty-cash/https-github-com-theluckystrike-mcp-servers-releases-download-v0-22-0-petty-cash)

## Channel facts

- Registry: `mcpb`
- Package: `https://github.com/theluckystrike/mcp-servers/releases/download/v0.22.0/petty-cash.mcpb`
- Version: `0.22.0`
- Transport: `stdio`

## Trust breakdown

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. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-21.

- **Supply Chain Security**: 22/100
  - Malware scan not yet available for this package.
  - Known CVEs were checked across the 157 of 157 dependencies we could resolve, so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - 63 of 157 dependencies flagged as unhealthy (2 deprecated).
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 3 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 87/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1087 tokens (~108/item across 10 items; 9 tools + 1 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 99/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 96% of tool parameters carry a description.
- **Tool Safety**: 75/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - 0 of 1 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "voucher_delete" implies "delete" and declares no destructiveHint at all, which the MCP spec reads as destructive by default.
  - An AI judge read all 10 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**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

- Download bundle: `https://github.com/theluckystrike/mcp-servers/releases/download/v0.22.0/petty-cash.mcpb`

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-17 (score 48)

First indexed and scored.

## MCP tools (9)

### `float_open` (~164 tokens)

Open a petty cash float

Open a petty cash float on the imprest system and return its id. The imprest is the cash the tin is topped back up to at every replenishment, in whole minor units. Free tier: one float.

Input parameters:

- `currency` (string, required): ISO code the cash is held in
- `custodian` (string): Who holds the tin. Defaults to the shared business profile's name
- `imprest_minor` (integer, required): The float amount in whole minor units (integer cents). 50000 is EUR 500.00
- `name` (string, required): What this tin is, e.g. Office float or Warehouse float
- `note` (string)
- `opened` (string): The date the float was handed over, YYYY-MM-DD. Default today

### `topup_record` (~146 tokens)

Record cash put into the float

Record cash put into the tin, in whole MINOR units, with the date and source, and return the new balance against the imprest. It also reimburses every voucher up to that date, as a replenishment does.

Input parameters:

- `amount_minor` (integer, required): Cash added, in whole minor units
- `date` (string, required): The date the cash went in, YYYY-MM-DD
- `float` (string): The float id, e.g. FLOAT-2026-0001, or its name. Omit when there is only one
- `source` (string, required): Where it came from, e.g. Cheque 0142, Bank withdrawal, or Owner

### `voucher_add` (~239 tokens)

Record a petty cash voucher

Record one voucher paid out of the tin and return its VOU-YYYY-NNNN number. More than the float holds is refused, and so is a byte-identical duplicate. Free tier: 20 vouchers a calendar month.

Input parameters:

- `amount_minor` (integer, required): What was paid out, in whole minor units. 1250 is EUR 12.50
- `category` (string, required): What kind of spend, e.g. postage, travel, office. It becomes the expenses:<category> account
- `date` (string, required): The date the cash left the tin, YYYY-MM-DD
- `description` (string, required): What was bought, e.g. Printer paper x5
- `duplicate_ok` (boolean): Record it even though an identical voucher exists, for a genuinely repeated purchase. Default false
- `float` (string): The float id, e.g. FLOAT-2026-0001, or its name. Omit when there is only one
- `paid_to` (string, required): Who was paid, e.g. Corner Shop
- `receipt_ref` (string): The receipt number or where the paper is filed

### `voucher_delete` (~67 tokens)

Delete a voucher

Delete a voucher entered wrongly, by its VOU number. One already covered by a reconciliation is refused, naming the count it would falsify: record a correcting voucher instead. Free.

Input parameters:

- `voucher` (string, required): The voucher id, e.g. VOU-2026-0003

### `reconcile` (~115 tokens)

Count the tin and reconcile

Count the tin: give the cash counted in whole MINOR units and the date, and get the expected balance, the difference, and every voucher since the last count, which this marks reconciled. Free.

Input parameters:

- `counted_minor` (integer, required): The cash actually counted, in whole minor units
- `date` (string, required): The date it was counted, YYYY-MM-DD
- `float` (string): The float id, e.g. FLOAT-2026-0001, or its name. Omit when there is only one

### `replenish_request` (~103 tokens)

Request a replenishment

Work out what puts the float back to its imprest: the amount, the vouchers it reimburses, the totals per category as an expense_add-ready payload, and the double entry. Writes nothing. Pro.

Input parameters:

- `date` (string): The date the request is made, YYYY-MM-DD. Default today
- `float` (string): The float id, e.g. FLOAT-2026-0001, or its name. Omit when there is only one

### `float_report` (~104 tokens)

Report the state of the float

Report each float: balance against imprest, what it takes to restore it, unreconciled vouchers with their total, the last count, and the history of what counts found over or short. Pro.

Input parameters:

- `float` (string): The float id, e.g. FLOAT-2026-0001, or its name. Omit when there is only one
- `limit` (integer): Maximum unreconciled vouchers listed per float, default and ceiling 2000

### `license_status` (~54 tokens)

License status

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.

### `license_activate` (~71 tokens)

Activate license

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.

Input parameters:

- `key` (string, required): License key from the checkout confirmation page

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/theluckystrike-petty-cash/https-github-com-theluckystrike-mcp-servers-releases-download-v0-22-0-petty-cash#diagnostics

## Score history

- 2026-09-21: 48
- 2026-09-20: 48
- 2026-09-19: 48
- 2026-09-18: 48
- 2026-09-17: 48

## Common questions

### What is the io.github.theluckystrike/petty-cash MCP server?

io.github.theluckystrike/petty-cash is an MCP server listed in the public MCP registry as io.github.theluckystrike/petty-cash. A petty cash float on the imprest system: vouchers, reconciliation and the replenishment. This page covers its MCPB bundle (https://github.com/theluckystrike/mcp-servers/releases/download/v0.22.0/petty-cash.mcpb).

### Is the io.github.theluckystrike/petty-cash MCP server safe to use?

io.github.theluckystrike/petty-cash scores 48 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/petty-cash MCP server expose?

io.github.theluckystrike/petty-cash exposes 9 tools: float_open, topup_record, voucher_add, voucher_delete, reconcile, and 4 more. Their descriptions and schemas cost roughly 1,063 tokens of context every time the server is loaded.

### What licence is the io.github.theluckystrike/petty-cash MCP server under?

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

## Links

- Repository: https://github.com/theluckystrike/mcp-servers
- Website: https://mcp.zovo.one/s/petty-cash
- Changelog RSS feed: https://verifymcp.io/servers/theluckystrike-petty-cash/https-github-com-theluckystrike-mcp-servers-releases-download-v0-22-0-petty-cash.xml
- Changelog JSON feed: https://verifymcp.io/servers/theluckystrike-petty-cash/https-github-com-theluckystrike-mcp-servers-releases-download-v0-22-0-petty-cash.json
- HTML version of this page: https://verifymcp.io/servers/theluckystrike-petty-cash/https-github-com-theluckystrike-mcp-servers-releases-download-v0-22-0-petty-cash
