ffiec_compare_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_compare_banks for the schema, then POST the same URL with its arguments for the data.
Compare or rank US banks on a call report figure — largest by assets, most deposits, highest net income — optionally within one state. Answers “largest banks in Ohio”, “compare JPMorgan and Bank of America”, “which banks have the most deposits”. Pass names/certs to compare a specific set, or omit them to rank the whole industry. Amounts are in whole US dollars, normalised from the thousands banks file in, so figures line up with the ncua pack for credit unions. Example: ffiec_compare_banks({ metric: “total_assets”, state: “OH”, limit: 10 }); ffiec_compare_banks({ names: [“jpmorgan chase bank”, “bank of america”] }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
metric | string | no | total_assets (default), total_loans, total_deposits, total_equity, net_income, past_due_90, or a raw MDRM code |
names | array | no | Specific banks to compare, by name |
items | string | no | |
certs | array | no | Specific banks to compare, by FDIC certificate number |
items | number | no | |
state | string | no | Restrict a ranking to one state |
quarter | string | no | Quarter end as YYYY-MM-DD; defaults to latest |
limit | number | no | Max results when ranking (default 20, max 100) |
Example call
Arguments
{
"metric": "total_assets",
"state": "OH",
"limit": 10
}
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_compare_banks","arguments":{"metric":"total_assets","state":"OH","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ffiec_compare_banks', {
"metric": "total_assets",
"state": "OH",
"limit": 10
});
More examples
{
"names": [
"jpmorgan chase bank",
"bank of america"
]
}
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.