Fdic
live FinanceDataFDIC MCP — FDIC BankFind Suite API (free, no auth)
Tools
fdic_search_institutions Search for FDIC-insured banks and institutions by name. Returns institution name, CERT number, city, state, total assets, deposits, net income, ROA, ROE, and report date.
No parameters required.
Try it
fdic_get_institution Get detailed information for a specific FDIC-insured bank by its CERT (certificate) number. Returns full institution profile including name, location, assets, and regulatory details.
No parameters required.
Try it
fdic_financials Get financial call report data for a bank by CERT number. Returns quarterly financial metrics including total assets, deposits, net income, interest income, loan losses, ROA, ROE, and efficiency ratio
No parameters required.
Try it
fdic_failures List FDIC bank failures, sorted by most recent. Optionally filter by date range. Returns bank name, city, state, CERT, failure date, acquiring institution, and fund used.
No parameters required.
Try it
fdic_summary Get aggregate industry summary data for all FDIC-insured institutions for a given reporting date. Returns total assets, deposits, net income, interest income, number of loans, and institution count.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/fdic/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/fdic/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"fdic_search_institutions","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("fdic_search_institutions", {}); // Or ask in plain English:
const answer = await px.ask("fdic mcp — fdic bankfind suite api (free, no auth)"); Related compound tools
These combine Fdic with other data sources in a single call:
FinTech Intel MCP — Compound tools that chain SEC, CFPB, FDIC,
3 tools — fintech_company_deep_dive, fintech_bank_health_check, fintech_market_snapshot