# FlashBank (npm · @flashbank/mcp)

Fixed-fee P2P term loans (no oracles) and flash loans on Ethereum, Base, Arbitrum and Sepolia.

- Trust score: 70/100 (medium)
- Change this week: +19
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@flashbank/mcp`: 70/100 (this document), [markdown](https://verifymcp.io/servers/rotwang9000-flashbank/flashbank-mcp.md), [page](https://verifymcp.io/servers/rotwang9000-flashbank/flashbank-mcp)

## Channel facts

- Registry: `npm`
- Package: `@flashbank/mcp`
- Version: `1.1.1`
- 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-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (103 of 107), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (103 of 107), so this covers what we could see, not the whole tree.
- **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 51 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 85/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 1521 tokens (~80/item across 19 items; 15 tools + 4 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 88/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 63% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add rotwang9000-flashbank -- npx -y @flashbank/mcp
```

### Codex

```bash
codex mcp add rotwang9000-flashbank -- npx -y @flashbank/mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "rotwang9000-flashbank": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@flashbank/mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add rotwang9000-flashbank --command npx --arg -y --arg @flashbank/mcp
```

### Hermes

```yaml
mcp_servers:
  rotwang9000-flashbank:
    command: "npx"
    args: ["-y", "@flashbank/mcp"]
```

### Other

```json
{
  "mcpServers": {
    "rotwang9000-flashbank": {
      "command": "npx",
      "args": [
        "-y",
        "@flashbank/mcp"
      ]
    }
  }
}
```

## 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-08-03 (score 70, +1)

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

### 2026-08-02 (score 69, +11)

- [security regression] Known CVEs: partial → unverified
- [functional regression] Dependency health: partial → unverified
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Stability: unverified → 0.23

### 2026-08-01 (score 58, +25)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 33, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 51)

First indexed and scored.

## MCP tools (15)

### `explain` (~36 tokens)

Explain FlashBank

Plain-English primer on both FlashBank products, the loan lifecycle, fees and safety rules. Call this first if you are unsure how anything works.

### `list_chains` (~26 tokens)

List chains

Supported chains with contract addresses, registry tokens and whether writes are currently permitted for each.

### `wallet_status` (~45 tokens)

Wallet status

Address, native balance and registry-token balances of the configured signing wallet on one chain. Reports read-only mode when no key is set.

Input parameters:

- `chain` (string, required): Chain to inspect

### `p2p_list_offers` (~74 tokens)

List open P2P offers

Open, takeable loan offers/requests on a chain, newest first with boosted (featured) offers ranked on top. Returns human-readable terms plus the raw ids for follow-up calls.

Input parameters:

- `chain` (string, required): Chain to browse
- `limit` (integer): Max offers to return (default 20)

### `p2p_get_loan` (~62 tokens)

Get P2P loan detail

Full detail for one loan id: terms, parties, status, what a taker must provide, repayment quote, default deadline/split and the on-chain terms hash.

Input parameters:

- `chain` (string, required)
- `id` (integer, required): Loan id

### `p2p_my_loans` (~56 tokens)

My P2P loans

Every loan created by or assigned to an address (defaults to the configured wallet), with current status.

Input parameters:

- `address` (string): Address to look up (defaults to the signing wallet)
- `chain` (string, required)

### `flash_pools` (~43 tokens)

Flash-loan pools

Per-token flash-loan liquidity on a chain: committed amount, live available liquidity, fee, per-loan cap and provider count.

Input parameters:

- `chain` (string, required)

### `flash_quote` (~76 tokens)

Quote a flash loan

Fee quote for flash-borrowing a given amount of a token (symbol or address) on a chain.

Input parameters:

- `amount` (string, required): Human amount to borrow, e.g. "250"
- `chain` (string, required)
- `token` (string, required): Token symbol (e.g. "WETH") or 0x address

### `p2p_create_offer` (~359 tokens)

Create a P2P offer

Post a loan offer (you lend) or borrow request (you borrow) on-chain. Escrows your side immediately: lenders escrow the principal, borrowers escrow the collateral. Reversible via p2p_cancel while untaken. Requires a signing key; mainnet additionally requires FLASHBANK_MCP_ALLOW_MAINNET=true.

Input parameters:

- `allowedTaker` (string): Restrict who may take (address). Omit for open market.
- `chain` (string, required)
- `collateral` (string, required): Collateral amount (human units)
- `collateralToken` (string, required): Token pledged as collateral — symbol or address
- `coolingOffHours` (number): v2 chains (Sepolia) only: cooling-off window in hours over which the fee vests. Omit or 0 = the protocol minimum for the term; longer is allowed, shorter rejects.
- `durationDays` (number, required): Loan term in days
- `flatFee` (string, required): Flat repayment fee in principal-token units (e.g. "30" = repay principal + 30). NOT a percentage.
- `graceDays` (number): Grace period after maturity (days, default 1)
- `offerExpiryHours` (number): Hours until the un-taken offer expires (default: never)
- `principal` (string, required): Principal amount (human units, e.g. "1000")
- `principalToken` (string, required): Token being lent — symbol or address
- `settlementValue` (string): Agreed value of ALL the collateral in principal-token units; surplus above the debt returns to the borrower on default. Omit for full forfeit.
- `side` (string, required): "lend" = you provide the principal; "borrow" = you provide the collateral

### `p2p_take_offer` (~94 tokens)

Take a P2P offer

Accept an open offer, pinning the EXACT terms currently on-chain (takeWithTerms) so a last-second re-price reverts instead of surprising you. Approves and escrows your side, which activates the loan — a BINDING commitment until repaid or defaulted. Requires a signing key (mainnet gated).

Input parameters:

- `chain` (string, required)
- `id` (integer, required): Loan id to take

### `p2p_repay` (~86 tokens)

Repay a P2P loan

Repay an active loan you borrowed, redeeming your collateral. On v2 chains (Sepolia) the fee is the VESTED amount — repaying inside the cooling-off window is rebated down to a 10% floor. Requires the signing wallet to be the borrower (mainnet gated).

Input parameters:

- `chain` (string, required)
- `id` (integer, required)

### `p2p_claim_default` (~67 tokens)

Claim a defaulted P2P loan

After the repay window closes unpaid, the lender claims the collateral (any agreed surplus returns to the borrower). Irreversibly settles the loan. Requires the signing wallet to be the lender (mainnet gated).

Input parameters:

- `chain` (string, required)
- `id` (integer, required)

### `p2p_cancel` (~51 tokens)

Cancel an open P2P offer

Cancel an offer you created that has not been taken, reclaiming your escrow (any boost spend is not refunded). Mainnet gated.

Input parameters:

- `chain` (string, required)
- `id` (integer, required)

### `p2p_withdraw_unclaimed` (~84 tokens)

Withdraw queued payouts (v2)

v2 chains (Sepolia) only: if a settlement payout to you could not be delivered (e.g. a blocklisting token), it queues on-chain — this checks your queued balance for a token and withdraws it.

Input parameters:

- `chain` (string, required)
- `token` (string, required): Token symbol or 0x address the payout was in

### `faucet_mint` (~61 tokens)

Mint Sepolia play-money

Mint a free batch of 10,000 fpUSD or fpETH (valueless playground tokens) to the signing wallet on Sepolia. The safe way for agents to get funds to experiment with.

Input parameters:

- `token` (string, required): Which playground token to mint

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/rotwang9000-flashbank/flashbank-mcp#diagnostics

## Score history

- 2026-08-03: 70
- 2026-08-02: 69
- 2026-08-01: 58
- 2026-07-31: 33
- 2026-07-29: 51
- 2026-07-28: 51
- 2026-07-27: 51

## Links

- npm package: https://www.npmjs.com/package/@flashbank/mcp
- Socket report: https://socket.dev/npm/package/@flashbank/mcp
- Repository: https://github.com/Rotwang9000/flashbank-net
- Website: https://flashbank.net/
- Changelog RSS feed: https://verifymcp.io/servers/rotwang9000-flashbank/flashbank-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/rotwang9000-flashbank/flashbank-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/rotwang9000-flashbank/flashbank-mcp
