FlashBank MCP Server

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

Local serverstdioGo

What is the FlashBank MCP server?

If you already use FlashBank, the flashbank mcp server is the piece that lets your assistant work with it directly. Fixed-fee P2P term loans (no oracles) and flash loans on Ethereum, Base, Arbitrum and Sepolia.

What the server does

Non-custodial, on-chain lending where your funds stay in your wallet until the moment they're used. FlashBank is two complementary products that share that principle:

Installation

hardhat on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Dual — control admin.** Sensitive changes (token config, ownership, profit withdrawal) use a propose-then-execute flow split between the owner and a
  • Time — only settlement.** Repay principal + a flat fee before maturity + grace, or the lender claims the collateral. Nothing is priced on-chain, so **no
  • Architectureoverview, pool mechanics, [gas
  • Security — the live honest audit page (both features, candid: trust assumptions, what's tested, known limits), plus [router audit
  • Deploymentguide, website, live networks
  • Product — What it is
  • Chain — FlashBankP2PLoan (verified)
  • Ethereum0x131C…18A0
  • Base0x86Fb…FcbB
  • Contract — Address (verified)
  • Tests — The Solidity suites cover the router (flash-loan flow, owner-fee accrual, dual control, validation) and the P2P escrow (lifecycle, time-based

Credentials and setup notes

Configuration is passed through the environment: FLASHBANK_MCP_PRIVATE_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch FlashBank.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. FlashBank's toolset — Dual, Time, Architecture and 8 more — is a fair guide to whether it matches your workflow. It is maintained by Rotwang9000; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
Dualcontrol admin.** Sensitive changes (token config, ownership, profit withdrawal) use a propose-then-execute flow split between the owner and a separate admin. See [docs/security/DUAL_CONTROL.md](docs/security/DUAL_CONTROL
Timeonly settlement.** Repay principal + a flat fee before maturity + grace, or the lender claims the collateral. Nothing is priced on-chain, so **no oracle is needed**.
Architecture[overview](docs/architecture/ARCHITECTURE.md), [pool mechanics](docs/architecture/POOL_MECHANICS.md), [gas analysis](docs/architecture/GAS_ANALYSIS.md)
Securitythe live [honest audit page](https://flashbank.net/audit) (both features, candid: trust assumptions, what's tested, known limits), plus [router audit notes](docs/security/SECURITY_AUDIT.md), [reentrancy analysis](docs/se
Deployment[guide](docs/deployment/DEPLOYMENT.md), [website](docs/deployment/WEBSITE_DEPLOYMENT.md), [live networks](docs/deployment/LIVE_NETWORKS.md)
ProductWhat it is
ChainFlashBankP2PLoan (verified)
Ethereum[0x131C…18A0](https://etherscan.io/address/0x131C8545b28bca9063B364380956Df33A70018A0#code)
Base[0x86Fb…FcbB](https://basescan.org/address/0x86FbF8e03f8A6f3eF52062E3f81627F64aa5FcbB#code)
ContractAddress (verified)
TestsThe Solidity suites cover the router (flash-loan flow, owner-fee accrual, dual control, validation) and the P2P escrow (lifecycle, time-based default, the three-tier fee model and boost, reentrancy, plus a randomised fun

How to install the FlashBank MCP server

{
  "mcpServers": {
    "flashbank": {
      "command": "npx",
      "args": ["-y", "hardhat"],
      "env": {
        "FLASHBANK_MCP_PRIVATE_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
FLASHBANK_MCP_PRIVATE_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use FlashBank to Dual.
  • Use FlashBank to Time.
  • Use FlashBank to Architecture.

Frequently asked questions

It connects FlashBank to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (Dual, Time, Architecture, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with FlashBank directly.