FDIC BankFind MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add fdic-mcp-server -- npx -y fdic-mcp-server
README.md

Access the FDIC BankFind Suite API for banking data and analysis

FDIC BankFind MCP Server

fdic-mcp-server is an MCP (Model Context Protocol) server for the FDIC BankFind Suite API. It gives LLM hosts a clean way to search FDIC-insured institutions, retrieve public banking records, and run common multi-bank analysis workflows without custom FDIC API plumbing.

It is useful when you want an MCP-compatible client to answer questions about banks, failures, branches, quarterly financials, deposit data, or peer performance using a stable tool surface and machine-readable responses.

Project Status

Active development. The server is usable today and the tool surface is covered by tests, but the project is still evolving as client support and analysis workflows improve.

Why This Project Exists

The FDIC BankFind Suite API is public and useful, but it is not packaged for MCP clients out of the box. This project solves that by:

  • exposing BankFind datasets as MCP tools
  • preserving both human-readable and machine-readable responses
  • adding server-side analysis helpers for multi-bank comparison workflows
  • supporting both local stdio hosts and remote HTTP hosts

Documentation

Public user docs:

Repo reference docs:

Project and release info:

Installation

Prerequisites:

  • Node.js 20 or later
  • npm

Run directly without a global install:

npx fdic-mcp-server

Install globally:

npm install -g fdic-mcp-server
fdic-mcp-server

Install from GitHub Packages:

npm install -g @jflamb/fdic-mcp-server --registry=https://npm.pkg.github.com
fdic-mcp-server

Install from source:

git clone https://github.com/jflamb/fdic-mcp-server.git
cd fdic-mcp-server
npm install
npm run build

Usage

Hosted Endpoint

If your MCP host supports remote MCP URLs, use:

https://bankfind.jflamb.com/mcp

Run Locally

Stdio transport:

node dist/index.js

HTTP transport:

TRANSPORT=http PORT=3000 node dist/index.js

The HTTP MCP endpoint is http://127.0.0.1:3000/mcp by default.

Notes:

  • Local HTTP runs bind to 127.0.0.1 by default. Set HOST if you intentionally want a different bind address.
  • Browser-origin requests are checked against ALLOWED_ORIGINS. If unset, the server allows the local defaults for localhost and 127.0.0.1 on the configured port, plus non-browser requests with no Origin header.
  • The HTTP transport is session-based. Clients initialize once, then reuse MCP-Session-Id on later POST, GET, and DELETE requests.

Container builds use PORT=8080 by default for Cloud Run compatibility.

Set FDIC_MAX_RESPONSE_BYTES to override the upstream FDIC response-size guard. The default is 5242880 bytes (5 MiB).

Minimal MCP Configuration

{
  "mcpServers": {
    "fdic": {
      "command": "npx",
      "args": ["-y", "fdic-mcp-server"]
    }
  }
}

If you are running from a local clone instead of the published package:

{
  "mcpServers": {
    "fdic": {
      "command": "node",
      "args": ["/path/to/fdic-mcp-server/dist/index.js"]
    }
  }
}

Client-specific setup details are in docs/clients.md.

Usage Examples

Find active banks in North Carolina with assets over $1 billion:

filters: STNAME:"North Carolina" AND ACTIVE:1 AND ASSET:[1000000 TO *]

Get the 10 costliest bank failures since January 1, 2000:

filters: FAILDATE:[2000-01-01 TO *]
sort_by: COST
sort_order: DESC
limit: 10

Compare North Carolina banks between two quarterly report dates:

state: North Carolina
start_repdte: 20211231
end_repdte: 20250630
sort_by: asset_growth
sort_order: DESC
(fdic_compare_bank_snapshots)

Build a peer group for a specific bank:

cert: 29846
repdte: 20241231
(fdic_peer_group_analysis)

More examples are in docs/usage-examples.md.

Available Tools

Tool Description
fdic_search_institutions Search FDIC-insured banks and savings institutions
fdic_get_institution Get details for a specific institution by CERT numb

Tools (2)

fdic_search_institutionsSearch FDIC-insured banks and savings institutions
fdic_get_institutionGet details for a specific institution by CERT number

Environment Variables

TRANSPORTTransport protocol (stdio or http)
PORTPort for HTTP transport
HOSTBind address for HTTP transport
ALLOWED_ORIGINSAllowed origins for browser-origin requests
FDIC_MAX_RESPONSE_BYTESOverride the upstream FDIC response-size guard

Configuration

claude_desktop_config.json
{"mcpServers": {"fdic": {"command": "npx", "args": ["-y", "fdic-mcp-server"]}}}

Try it

Find all active banks in North Carolina with assets over $1 billion.
List the 10 costliest bank failures since January 1, 2000.
Compare the asset growth of North Carolina banks between December 31, 2021 and June 30, 2025.
Perform a peer group analysis for the bank with CERT number 29846 as of December 31, 2024.

Frequently Asked Questions

What are the key features of FDIC BankFind?

Exposes FDIC BankFind datasets as MCP tools. Supports both human-readable and machine-readable responses. Includes server-side analysis helpers for multi-bank comparisons. Compatible with both local stdio and remote HTTP MCP hosts.

What can I use FDIC BankFind for?

Analyzing historical bank failure data for financial research. Comparing quarterly financial performance across peer groups of banks. Retrieving specific institution details for regulatory or compliance workflows. Filtering bank branch locations and demographic data for market analysis.

How do I install FDIC BankFind?

Install FDIC BankFind by running: npx fdic-mcp-server

What MCP clients work with FDIC BankFind?

FDIC BankFind works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep FDIC BankFind docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare