ffiec_search_banks
Pack: ffiec-call-reports · Endpoint: https://gateway.pipeworx.io/ffiec-call-reports/mcp
Find US banks and savings institutions that file the FFIEC Call Report, by name, city or state. Returns the bank’s Federal Reserve IDRSSD, its FDIC certificate number, location, which call report form it files (031/041/051), and total assets. Answers “banks in Austin Texas”, “is there a bank called Zions”, “list Ohio banks”. Name matching is fuzzy, so partial names work. Example: ffiec_search_banks({ name: “jpmorgan” }); ffiec_search_banks({ state: “OH”, limit: 25 }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | Full or partial bank name, e.g. “jpmorgan” |
state | string | no | Two-letter state code, e.g. “TX” |
city | string | no | City name |
limit | number | no | Max results (default 20, max 100) |
Example call
Arguments
{
"name": "jpmorgan"
}
curl
curl -X POST https://gateway.pipeworx.io/ffiec-call-reports/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ffiec_search_banks","arguments":{"name":"jpmorgan"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ffiec_search_banks', {
"name": "jpmorgan"
});
More examples
{
"state": "OH",
"limit": 25
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ffiec-call-reports": {
"url": "https://gateway.pipeworx.io/ffiec-call-reports/mcp"
}
}
}
See Getting Started for client-specific install steps.