Connects to the FDIC's BankFind Suite API to pull live banking data without needing authentication. Part of the Pipeworx gateway ecosystem, which aggregates 673+ data sources behind a unified MCP interface. You can either call tools directly or use the ask_pipeworx function to query in plain English and let the gateway handle tool selection and argument mapping. Useful when you need federal banking data, institution lookups, or financial regulatory information in your agent workflows. Runs over streamable HTTP, so no local installation required. Free tier available through the hosted gateway at pipeworx.io.
FDIC MCP — FDIC BankFind Suite API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"fdic": {
"url": "https://gateway.pipeworx.io/fdic/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Fdic data" })
The gateway picks the right tool and fills the arguments automatically.
MIT