ffiec_line_item
Pack: ffiec-call-reports · Endpoint: https://gateway.pipeworx.io/ffiec-call-reports/mcp
Track one US bank call report line item over time — total assets, net income, deposits, equity, or any MDRM code. Answers “how have this bank’s deposits changed”, “net income trend for bank X”, “what is RCFD2170 for this bank over the last two years”. Pass a friendly metric (total_assets, total_loans, total_deposits, total_equity, net_income, past_due_90) or a raw MDRM code. Amounts are returned in whole US dollars, normalised from the thousands the call report is filed in. Example: ffiec_line_item({ name: “jpmorgan chase bank”, metric: “total_assets” }); ffiec_line_item({ cert: 628, metric: “RIAD4340” }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | Bank name (fuzzy) |
cert | number | no | FDIC certificate number |
idrssd | number | no | Federal Reserve IDRSSD |
metric | string | no | total_assets, total_loans, total_deposits, total_equity, net_income, past_due_90 — or a raw MDRM code like “RCFD2170” |
Example call
Arguments
{
"name": "jpmorgan chase bank",
"metric": "total_assets"
}
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_line_item","arguments":{"name":"jpmorgan chase bank","metric":"total_assets"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ffiec_line_item', {
"name": "jpmorgan chase bank",
"metric": "total_assets"
});
More examples
{
"cert": 628,
"metric": "RIAD4340"
}
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.