π¦ FDIC BankFind MCP Server π€ π»
About
Provides structured U.S. banking data from the FDIC BankFind API for AI tools and workflows.
Details
- Author
- clafollett
- GitHub stars
- 4
- Downloads
- 303
- Categories
- Database, Finance
Jump to
- Implements most FDIC BankFind API endpoints
- Provides seven tools: demographics, failures, history, institutions, locations, summary of deposits, and summary
- Supports advanced query parameters such as filters, sorting, and pagination
- Can return data in JSON, CSV, or XML formats
- Deployed as a Docker container from GitHub Container Registry
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
π¦ FDIC BankFind MCP Server π€ π»Command (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Run the official Docker image with docker run -i --rm ghcr.io/clafollett/fdic-bank-find-mcp-server:main. Configure your MCP host (e.g., VS Code or Claude Desktop) to invoke Docker with that image, passing the -i flag for stdio integration. Tools are invoked via the MCP protocol using common parameters like filters, fields, limit, offset, and endpoint-specific keys.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"\ud83c\udfe6 fdic bankfind mcp server \ud83e\udd20\ud83d\udcbb": {
"fdic-bank-find-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/clafollett/fdic-bank-find-mcp-server:main"
]
}
}
}
}
McpServers
{
"fdic-bank-find-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/clafollett/fdic-bank-find-mcp-server:main"
]
}
}
π¦ FDIC BankFind MCP Server π€ π»
---
The FDIC BankFind MCP Server is a Model Context Protocol (MCP) server that brings the power of FDIC BankFind APIs straight to your AI tools and workflows. Structured U.S. banking data, delivered with maximum vibes. ππ
---
π‘ Use Cases
- Powering agent/LLM research on U.S. banks and institutions π€π¦
- Automating financial analytics, compliance, and reporting workflows ππ§Ύ
- Building AI-driven dashboards, bots, or custom fintech tools π€ π€
- Rapid prototyping for academic or market analysis ππ
---
π οΈ Prerequisites
---
1. To run the server in a container, youβll need to have Docker installed. π³
2. Once Docker is installed, make sure itβs running! πββοΈπ¨
---
Installation
π Run the Official Public Docker Image (Recommended)
The FDIC BankFind MCP Server is published and ready to use from GitHub Container Registry (GHCR).
To run it (Docker will pull the image automatically if it's not present):
docker run -i --rm ghcr.io/clafollett/fdic-bank-find-mcp-server:main
You do NOT need to build the image yourself unless you want to develop or customize the server. For most users, just running the command above is all you need!
---
Build Steps (Manual Docker Build)
If you want to build the image yourself (for local development or custom changes):
1. Clone the repository:
git clone https://github.com/YOUR-ORG/fdic-bank-find-mcp-server.git
cd fdic-bank-find-mcp-server
2. Build the Docker image:
docker build -t fdic-bank-find-mcp-server:main .
This uses the included Dockerfile to build a release-mode Rust binary and package it into a minimal container.
3. Test the image locally:
docker run -i --rm fdic-bank-find-mcp-server:main
(The -i flag is required for stdio/MCP integration.)
4. Use the image in your MCP host config:
Follow the VS Code or Claude Desktop instructions below, referencing your local image as fdic-bank-find-mcp-server:main.
> If youβd like to tag/push to a registry, simply update the docker build and docker tag commands accordingly.
π§βπ» Usage with VS Code
Once the image is published to GHCR youβll be able to click a one-click install badge here. Until then, follow the manual steps below. π οΈ
Add the following JSON block to your User Settings (JSON) file. Open it with Ctrl + Shift + P β βPreferences: Open User Settings (JSON)β.
{
"mcp": {
"servers": {
"fdic": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/YOUR-ORG/fdic-bank-find-mcp-server:main"
]
}
}
}
}
> π‘ For workspace-specific config, place the same block (without the outer "mcp" key) in .vscode/mcp.json. Easy peasy! π
π€ Usage with Claude Desktop (Conceptual)
{
"mcpServers": {
"fdic-bank-find": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/YOUR-ORG/fdic-bank-find-mcp-server:main"
]
}
}
}
π¦ Build from Source (Manual)
If you prefer not to use Docker (or want to hack on the server itself), you can compile the binary with the Rust toolchain and run it in stdio mode. π¦Ύ
```bash
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



