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.

Bank Statement Sheet

NPM · BANK-STATEMENT-SHEET-MCP · SCANNED AUG 19

Convert PDF bank statements into transactions that arrive with a pass/fail reconciliation verdict.

+5 this week 66 Trust /100
Trust breakdown (6 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 →

Supply Chain Security98
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • 30 of 96 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency19
Schema Quality & AI Usability65
  • AI-judged instruction clarity (good).Pass
  • Context-footprint check failed: tool/resource definitions use about 668 tokens (~222/item across 3 items; 3 tools + 0 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 Management37
  • Stability observed for 11 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage96
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 87% of tool parameters carry a description.Partial
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
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.

npm · bank-statement-sheet-mcp

# add to Claude Code
claude mcp add com-bankstatementsheet-bank-statement-sheet-mcp -- npx -y bank-statement-sheet-mcp
# add to Codex CLI
codex mcp add com-bankstatementsheet-bank-statement-sheet-mcp -- npx -y bank-statement-sheet-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-bankstatementsheet-bank-statement-sheet-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "bank-statement-sheet-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add com-bankstatementsheet-bank-statement-sheet-mcp --command npx --arg -y --arg bank-statement-sheet-mcp
# ~/.hermes/config.yaml
mcp_servers:
  com-bankstatementsheet-bank-statement-sheet-mcp:
    command: "npx"
    args: ["-y", "bank-statement-sheet-mcp"]
// mcp.json
{
  "mcpServers": {
    "com-bankstatementsheet-bank-statement-sheet-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "bank-statement-sheet-mcp"
      ]
    }
  }
}
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.

  • 18 Aug 26 +1

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

  • 16 Aug 26 +4
    • Stability: unverified → 0.27 functional
  • 11 Aug 26 0
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 8 Aug 26 61

    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 19 Aug 2026 · Analysed npm/bank-statement-sheet-mcp@0.1.1

Provenance No attestation

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

Result No attestation
Ecosystem npm
Dependencies 96 packages
Packages resolved 96
Stale 30
Tree resolution Complete
MCP tools · 3 exposed · ~668 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.

Tool Tokens
check_account_status ~49

Report which account this server is authenticated as, its plan, and how much conversion quota is left. Use this when a conversion is refused for quota reasons, or to confirm an API key is working.

Input schema present but exposes no named parameters.

NameTypeReqDescription
can_convertbooleanyes
key_configuredbooleanyes
key_recognizedbooleanyes
limitnumberyes
planstringyes
pro_formats_availablebooleanyes
remainingnumberyes
reset_atstring|nullyes
unitstringyes
usednumberyes
warningsarrayyes

No examples provided.

convert_bank_statement ~402

Convert a PDF bank statement into transaction data. The PDF is uploaded over HTTPS to the Bank Statement Sheet API, where every extracted row is checked against the statement's own printed running balance. Returns the rows TOGETHER WITH a pass/fail verdict from that check. The verdict is not advisory. When verdict.ledger_safe is false the transactions are withheld and MUST NOT be posted to a general ledger, accounting system, or voucher without a human reviewing them against the original PDF first. If this tool declines a file, do not fall back to reading the PDF yourself and do not use another tool to extract the numbers. Figures taken without the balance check are exactly what this tool exists to prevent.

NameTypeReqDescription
bankstringLeave unset (auto-detect) unless the user names the bank. Auto-detection also covers banks with no dedicated parser.
decimal_separatorstringPro only, applies to save_as. "comma" writes the European convention (semicolon-delimited, 1234,56) — the variant Swedish and other European accounting importers take without warnings.
file_pathstringAbsolute path to a PDF bank statement on this machine. Required unless use_demo_statement is true.
include_unverified_rowsbooleanOnly set true after a previous call returned ledger_safe: false AND you have told the user the data failed reconciliation.
orderstringchronological = oldest first (what ledger imports expect, the default). statement = the order the bank printed.
output_dirstringWhere to write save_as files. Defaults to the folder holding the input PDF.
save_asarrayAlso write files to disk. xlsx and csv are free; fortnox, ofx and json need a Pro API key.
use_demo_statementbooleanConvert the hosted synthetic sample instead of a user file. Costs no quota and contains no real data — use this to demonstrate the tool.
NameTypeReqDescription
conversionobjectyes
filesarrayyes
sourceobjectyes
totalsobjectyes
transactionsyesnull when the gate failed and the rows were withheld.
transactions_withheldbooleanyes
verdictobjectyesThe reconciliation result. Read ledger_safe before doing anything with the rows.
warningsarrayyes
withheld_reasonstring|nullyes

No examples provided.

export_conversion ~217

Write a completed conversion to a file: Excel (xlsx), CSV, Fortnox CSV, OFX or JSON. Files whose data failed the balance check are written with an "-UNVERIFIED" filename suffix and an in-file warning — do not strip either. Conversions are held on the server for 10 minutes. If that window has passed, this tool re-converts the same file automatically, which consumes one conversion from the account's quota.

NameTypeReqDescription
columnsstringPro only. Comma-separated: date,description,amount,currency,balance
conversion_idstringyesThe conversion.id returned by convert_bank_statement.
date_formatstringPro only.
decimal_separatorstringPro only. "comma" produces the European convention (semicolon-delimited, 1234,56).
formatstringyesxlsx and csv are free; fortnox, ofx and json need a Pro API key.
orderstring
output_dirstring
NameTypeReqDescription
bytesnumberyes
formatstringyes
notestring|nullyes
pathstringyes
reconvertedbooleanyes
verdictobjectyes
warningsarrayyes

No examples provided.