Skip to content
VS Code

FlashBank for VS Code

io.github.rotwang9000/flashbank

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

client:VS Code transport:stdio runtime:npm

Install FlashBank in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "flashbank-mcp-private-key",
      "description": "FLASHBANK_MCP_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "flashbank-mcp-allow-mainnet",
      "description": "FLASHBANK_MCP_ALLOW_MAINNET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "flashbank-mcp-rpc-sepolia",
      "description": "FLASHBANK_MCP_RPC_SEPOLIA",
      "password": true
    }
  ],
  "servers": {
    "flashbank": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@flashbank/mcp"
      ],
      "env": {
        "FLASHBANK_MCP_PRIVATE_KEY": "${input:flashbank-mcp-private-key}",
        "FLASHBANK_MCP_ALLOW_MAINNET": "${input:flashbank-mcp-allow-mainnet}",
        "FLASHBANK_MCP_RPC_SEPOLIA": "${input:flashbank-mcp-rpc-sepolia}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

FlashBank in other clients