FDIC BankFind MCP Server

FDIC BankFind MCP Server

Provides programmatic access to the FDIC BankFind Suite API, enabling users to query public data on FDIC-insured financial institutions, bank failures, and branch locations. It supports advanced filtering for financial reports, demographics, and institutional history without requiring an API key.

Category
Visit Server

README

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.

Table Of Contents

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

Installation

Prerequisites:

  • Node.js 18 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://localhost:3000/mcp.

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 number
fdic_search_failures Search failed bank records
fdic_get_institution_failure Get failure details for a specific institution
fdic_search_locations Search branch and office locations
fdic_search_history Search structural change events such as mergers and name changes
fdic_search_financials Search quarterly Call Report financial data
fdic_search_summary Search annual financial summary data
fdic_search_sod Search Summary of Deposits branch-level deposit data
fdic_search_demographics Search quarterly demographics and market-structure data
fdic_compare_bank_snapshots Compare two reporting snapshots across banks and rank growth and profitability changes
fdic_peer_group_analysis Build a peer group and rank an institution against peers on financial metrics

Two tools are server-side analysis helpers:

  • fdic_compare_bank_snapshots batches roster lookup, financial snapshots, and optional demographics snapshots inside the MCP server
  • fdic_peer_group_analysis builds a peer group from asset size, charter class, and geography criteria and then ranks an institution against peers

Data Notes

  • Monetary values are generally reported in thousands of dollars.
  • CERT is the stable FDIC institution identifier.
  • Financial and demographics datasets are quarterly and use REPDTE in YYYYMMDD.
  • Summary data is annual and uses YEAR.
  • SOD data is annual branch-level data as of June 30.
  • Do not mix quarterly financial data and annual branch data without stating the date basis.

Support

Use the GitHub issue tracker for bugs, documentation problems, and feature requests: https://github.com/jflamb/fdic-mcp-server/issues

The main support docs are:

Contributing

Contributor guidance lives in CONTRIBUTING.md.

For local validation, run:

npm run typecheck
npm test
npm run build

License

This project is licensed under the MIT License.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured