ffiec_line_item

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_line_item for the schema, then POST the same URL with its arguments for the data.

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

NameTypeRequiredDescription
namestringnoBank name (fuzzy)
certnumbernoFDIC certificate number
idrssdnumbernoFederal Reserve IDRSSD
metricstringnototal_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 — 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