# com.bestremotetools/bank-statement-import-categorise-reconcile (mcpb · bank-statement.mcpb)

Import a bank CSV, dedupe on re-import, categorise, summarise per currency and find subscriptions.

- Trust score: 55/100 (low)
- Change this week: +6
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-21

## Components

- mcpb · `bank-statement.mcpb`: 55/100 (this document), [markdown](https://verifymcp.io/servers/com-bestremotetools-bank-statement-import-categorise-reconcile/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-bank-state.md), [page](https://verifymcp.io/servers/com-bestremotetools-bank-statement-import-categorise-reconcile/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-bank-state)

## Channel facts

- Registry: `mcpb`
- Package: `https://github.com/theluckystrike/mcp-servers/releases/download/v0.21.0/bank-statement.mcpb`
- Version: `0.21.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**: 23/100
  - Malware scan not yet available for this package.
  - Known CVEs were checked across the 105 of 105 dependencies we could resolve, so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - 40 of 105 dependencies flagged as unhealthy.
- **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 14 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 1290 tokens (~99/item across 13 items; 12 tools + 1 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 40/100
  - Stability observed for 12 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 12 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 13 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.

## Install

- Download bundle: `https://github.com/theluckystrike/mcp-servers/releases/download/v0.21.0/bank-statement.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-20 (score 55, +1)

No change was recorded against any check on this day. Stability & Change Management went from 33 to 37. That category is still filling its 30-day observation window: 10 days of observed history at the previous scan, 11 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-18 (score 54, +1)

No change was recorded against any check on this day. Stability & Change Management went from 27 to 30. That category is still filling its 30-day observation window: 8 days of observed history at the previous scan, 9 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-17 (score 53, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-09-09 (score 49)

First indexed and scored.

## MCP tools (12)

### `statement_import` (~213 tokens)

Import a bank CSV

Call this tool to read a bank CSV into the local ledger. Columns detected from headers (date, description, amount, currency, balance); amounts use the file's locale; stored lines skipped. Returns detected/stored/skipped.

Input parameters:

- `account` (string): Name for this account, e.g. "business EUR". Default: the file name without its extension. Later imports of the same account are deduplicated against it
- `bank` (string): Bank profile. Default "auto": the headers decide. "generic" skips profile detection and uses the header heuristics alone
- `currency` (string): Currency for rows where the file names none. Defaults to the shared business profile's default_currency, else EUR; the response says which it used
- `overwrite` (boolean): Delete every transaction already stored for this account before importing, instead of merging. Use it when the bank reissued a corrected export
- `path` (string, required): Path to the .csv file exported from the bank. ~ is expanded

### `transactions_list` (~151 tokens)

List transactions

List stored transactions in a date range, optionally for one account or category, or only the ones no rule has categorised yet. Totals are reported per currency and never added across currencies.

Input parameters:

- `account` (string): Limit to one account, as named at import
- `category` (string): Only transactions in this category
- `from` (string): ISO date YYYY-MM-DD, inclusive. Default: the start of the current month
- `limit` (integer): Rows returned, default 200. Totals always cover the whole range
- `to` (string): ISO date YYYY-MM-DD, inclusive. Default: today
- `uncategorized` (boolean): Only transactions with no category yet

### `transactions_search` (~102 tokens)

Search transactions

Find transactions whose description, counterparty, category or account contains the query. Case-insensitive substring search, never a regex, so a query with brackets in it cannot hang the server.

Input parameters:

- `from` (string): ISO date, inclusive
- `limit` (integer): Rows returned, default 100
- `query` (string, required): Text to look for, e.g. "spotify" or "acme"
- `to` (string): ISO date, inclusive

### `category_rules` (~112 tokens)

Set or list category rules

Set the rules that categorise transactions, or call with none to list them. Each rule matches counterparty/description: plain is a substring; regex: true compiles only if not exponential. Reapplies to uncategorised rows.

Input parameters:

- `reapply_all` (boolean): Also overwrite categories set by an earlier rule or by hand. Default false: only uncategorised transactions are touched
- `rules` (array): The complete rule list; it replaces the stored one. Omit to list the current rules

### `transaction_categorize` (~73 tokens)

Categorise transactions by id

Set the category on one or more transactions by id. Nothing is changed unless every id exists, so a typo cannot half-apply.

Input parameters:

- `category` (string, required): Category to set. Pass an empty string to clear it
- `ids` (array, required): Transaction ids, as returned by transactions_list or transactions_search

### `statement_summary` (~133 tokens)

What I spent, from the bank account

What was spent/received in a date range per the BANK ACCOUNT, grouped by category, month, account or counterparty. For "what did I spend in August" once imported. Totals are per currency, never summed or converted.

Input parameters:

- `account` (string): Limit the summary to one account
- `from` (string): ISO date, inclusive. Default: the start of the current month
- `group_by` (string): Default category
- `to` (string): ISO date, inclusive. Default: today
- `top` (integer): Groups returned per currency, largest net first. Default 25

### `reconcile_expenses` (~129 tokens)

Reconcile against the expense ledger

Match bank debits against mcp-expense-tracker entries: same currency and amount, date within a few days. Reports matches, unmatched bank lines, expenses never hitting the bank. Read-only. Free: 31 days; Pro: any range.

Input parameters:

- `account` (string): Limit to one bank account
- `from` (string, required): ISO date, inclusive
- `to` (string, required): ISO date, inclusive
- `window_days` (integer): Allowed gap between the expense date and the bank date, default 3. A card payment usually settles a day or two after the receipt

### `recurring_detect` (~122 tokens)

Subscriptions and recurring charges in the bank data

Find charges that come back: same counterparty, steady amount and cadence. Reports cadence, typical amount, last/next due date, yearly cost per currency. Free: last 3 months, 5 charges; Pro: full history, every charge.

Input parameters:

- `account` (string): Limit to one account
- `min_occurrences` (integer): Occurrences required before a charge counts as recurring, default 2
- `months` (integer): How far back to look, default 3. Two occurrences are enough to see a cadence, three make it certain

### `statement_export` (~138 tokens)

Export bank transactions to a file

Call this tool to write BANK transactions of a date range to a .csv or .json file and return the path. For "export September to <path>" once imported. Written atomically: a failed export never leaves a half file.

Input parameters:

- `account` (string): Limit to one account
- `category` (string): Limit to one category
- `format` (string, required): csv for a spreadsheet, json for a program
- `from` (string, required): ISO date, inclusive
- `path` (string, required): Where to write the file. ~ is expanded; the parent directory must exist
- `to` (string, required): ISO date, inclusive

### `accounts_list` (~24 tokens)

List accounts

List the imported accounts with their bank, currency, transaction count and date range.

### `license_status` (~23 tokens)

License status

Show whether this server runs in free or Pro mode and where to upgrade.

### `license_activate` (~42 tokens)

Activate license

Activate a Pro license key (format MCPL1.xxx.yyy). Verified offline and saved locally.

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/com-bestremotetools-bank-statement-import-categorise-reconcile/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-bank-state#diagnostics

## Score history

- 2026-09-21: 55
- 2026-09-20: 55
- 2026-09-19: 54
- 2026-09-18: 54
- 2026-09-17: 53
- 2026-09-16: 49
- 2026-09-15: 49
- 2026-09-14: 49
- 2026-09-13: 49
- 2026-09-12: 49
- 2026-09-11: 49
- 2026-09-10: 49
- 2026-09-09: 49

## Common questions

### What is the com.bestremotetools/bank-statement-import-categorise-reconc… MCP server?

com.bestremotetools/bank-statement-import-categorise-reconc… is an MCP server listed in the public MCP registry as com.bestremotetools/bank-statement-import-categorise-reconc…. Import a bank CSV, dedupe on re-import, categorise, summarise per currency and find subscriptions. This page covers its MCPB bundle (https://github.com/theluckystrike/mcp-servers/releases/download/v0.21.0/bank-statement.mcpb).

### Is the com.bestremotetools/bank-statement-import-categorise-reconc… MCP server safe to use?

com.bestremotetools/bank-statement-import-categorise-reconc… scores 55 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 com.bestremotetools/bank-statement-import-categorise-reconc… MCP server expose?

com.bestremotetools/bank-statement-import-categorise-reconc… exposes 12 tools: statement_import, transactions_list, transactions_search, category_rules, transaction_categorize, and 7 more. Their descriptions and schemas cost roughly 1,262 tokens of context every time the server is loaded.

### What licence is the com.bestremotetools/bank-statement-import-categorise-reconc… MCP server under?

com.bestremotetools/bank-statement-import-categorise-reconc… 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/bank-statement
- Changelog RSS feed: https://verifymcp.io/servers/com-bestremotetools-bank-statement-import-categorise-reconcile/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-bank-state.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-bestremotetools-bank-statement-import-categorise-reconcile/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-bank-state.json
- HTML version of this page: https://verifymcp.io/servers/com-bestremotetools-bank-statement-import-categorise-reconcile/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-bank-state
