ffiec_search_banks

Pack: ffiec-call-reports · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ffiec_search_banks for the schema, then POST the same URL with its arguments for the data.

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

NameTypeRequiredDescription
namestringnoFull or partial bank name, e.g. “jpmorgan”
statestringnoTwo-letter state code, e.g. “TX”
citystringnoCity name
limitnumbernoMax 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 — every tool in the catalog, including this one — or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://pipeworx.io/mcp"
    }
  }
}
Connect to just the ffiec-call-reports pack
{
  "mcpServers": {
    "ffiec-call-reports": {
      "url": "https://gateway.pipeworx.io/ffiec-call-reports/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 27, 2026