Skip to main content
ClaudeWave
pipeworx-io avatar
pipeworx-io

mcp-ffiec-call-reports

View on GitHub

FFIEC Call Reports MCP — US bank line-item detail (fleet #338).

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/15/2026
Install in Claude Code / Claude Desktop
Method: NPX · @pipeworx/mcp-ffiec-call-reports
Claude Code CLI
claude mcp add mcp-ffiec-call-reports -- npx -y @pipeworx/mcp-ffiec-call-reports
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-ffiec-call-reports": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-ffiec-call-reports"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# FFIEC Call Reports — US bank line-item detail

Every US bank's quarterly balance sheet, income statement, regulatory capital, loan, deposit and credit-quality detail, as filed on the FFIEC Call Report (Consolidated Reports of Condition and Income, forms 031/041/051) — **4,336 filers**, line-item level.

Part of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 1573+ live data sources.

## Why this is not part of `fdic`, and not the same thing

Three packs touch US banks and they do different jobs:

| Pack | Gives you | Keys on |
|---|---|---|
| `fdic` | **Summary** financials, institution records, failures — 161 FDIC-derived fields | FDIC certificate |
| **this pack** | **Line items** — thousands of MDRM-coded fields per bank per quarter, as actually filed | Federal Reserve IDRSSD |
| `ncua` | The same shape for **credit unions**, which never appear in either of the above | NCUA charter |

The split is an **id-space** decision, not a preference. A bank carries an FDIC certificate number *and* a Federal Reserve IDRSSD, and they are different numbers for the same institution — JPMorgan Chase Bank is **cert 628** and **rssd 852218**. The CDR keys on IDRSSD; `fdic` keys on cert. Interleaving them in one pack is how a caller passes the id one tool returned into another and silently gets a different bank.

So: both identifiers are accepted here, both are returned, and **every response states which one it resolved on**.

## Tools

| Tool | Answers |
|---|---|
| `ffiec_search_banks` | *Banks in Ohio* — fuzzy name, city, state |
| `ffiec_call_report` | *Show me JPMorgan's call report* — one filer, one quarter, labeled |
| `ffiec_line_item` | One line item over time — assets, deposits, net income, any MDRM code |
| `ffiec_compare_banks` | Rank the industry or compare a named set |
| `ffiec_coverage` | Which quarters are loaded, the filing lag, and what a code means |

## Auth

Keyless.

## Units — the trap that breaks bank-vs-credit-union comparison

**Call reports are filed in thousands of dollars. NCUA files in whole dollars.** Comparing the two on raw numbers is wrong by 1000×, in the credit union's favour.

Every amount here is normalised to whole USD, with the as-filed figure kept alongside:

```json
{ "mdrm": "RCFD2170", "label": "TOTAL ASSETS",
  "value_usd": 4016571000000, "as_filed": 4016571000,
  "unit": "USD (normalised from the thousands banks file in)" }
```

Capital ratios arrive as percentages with a literal `%` and are passed through as `unit: "percent"` — never multiplied.

## What is mirrored

The **seven core schedules** — RC (balance sheet), RI (income statement), RC-R I (regulatory capital), RC-N (past due and nonaccrual), RC-C I (loans by category), RC-E (deposits), RC-K (quarterly averages). Measured: **1.49M values per quarter** of the 5.23M across all 46 schedules.

The full **3,843-code MDRM dictionary** loads regardless, so any code is explainable even where no value is held — `ffiec_coverage({code})` returns `mirrored_values: false` for those.

Non-numeric cells (17,100 a quarter) go to their own table rather than being dropped. `CONF` matters: it means the bank **filed and withheld** the value as confidential, which is a different answer from "not reported".

## Data source

- <https://cdr.ffiec.gov/public/PWS/DownloadBulkData.aspx> — FFIEC Central Data Repository bulk download.

### Things the next person would otherwise rediscover

- **There is no API.** The CDR download is ASP.NET WebForms: the period dropdown is empty until a series is selected via an AJAX postback, so one quarter takes three requests (GET for `__VIEWSTATE`, POST to populate periods, POST to download). No login needed. `www.ffiec.gov/npw/*` returns 403 to scripted clients, so that is not an alternative.
- **`RCFD` vs `RCON` is the consolidation basis**, not two different metrics — RCFD includes foreign offices, RCON is domestic-only. A bank files one or the other for a given line, so a lookup must try both or it returns "not reported" for a bank that reported perfectly well.
- **Line 2 of every schedule file is the human label**, not data. Parsing from line 2 shifts every value by one row.
- **Values are in thousands** (see above).
- **`CONF` is a value.** Do not coerce it to null.
- **The filing lag is ~106 days, measured** — the 03/31/2026 archive is stamped 07/15/2026 inside the ZIP. Not ~60, which an earlier draft of this file said. That matters for the freshness SLA: with a 91-day quarterly cadence on top of a 106-day lag, the newest data we can legitimately hold reaches ~197 days old just before the next release, so anything under 200 days false-alarms every cycle.

## Quick Start

Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):

```json
{
  "mcpServers": {
    "ffiec-call-reports": {
      "url": "https://gateway.pipeworx.io/ffiec-call-reports/mcp"
    }
  }
}
```

### What this endpoint actually serves

`tools/list` at `https://gateway.pipeworx.io/ffiec-call-reports/mcp` returns the tools in the table
above **plus the shared Pipeworx meta-tools** — `ask_pipeworx`,
`discover_tools`, `search_within`, `remember`/`recall` and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's `initialize` response states its exact scope, and
is the authoritative answer for a given day.

This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
`ask_pipeworx`, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.

Or connect to the full Pipeworx gateway to get every pack's tools listed
directly, instead of just this one's:

```json
{
  "mcpServers": {
    "pipeworx": {
      "url": "https://gateway.pipeworx.io/mcp"
    }
  }
}
```

Both URLs reach the same gateway and the same 1573+ data sources. The
only difference is which pack's tools are listed **directly**; `ask_pipeworx`
reaches all of them from either one.

## Standalone (no gateway account)

This package also runs as a local stdio MCP server — no Pipeworx account, no
gateway round-trip:

```json
{
  "mcpServers": {
    "ffiec-call-reports": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-ffiec-call-reports"]
    }
  }
}
```

Or run it directly to confirm it starts:

```bash
npx -y @pipeworx/mcp-ffiec-call-reports
```

It speaks MCP over stdin/stdout and answers `initialize`/`tools/list`/`tools/call`
for **only** this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.

## Using with ask_pipeworx

Instead of calling tools directly, you can ask questions in plain English —
this works on the pack endpoint above as well as on the full gateway:

```
ask_pipeworx({ question: "your question about Ffiec Call Reports data" })
```

The gateway picks the right tool and fills the arguments automatically.

## More

- [Docs and guides](https://pipeworx.io/docs)
- [pipeworx.io](https://pipeworx.io)

## License

MIT
ffiec-call-reportsmcpmcp-servermodel-context-protocolpipeworx

What people ask about mcp-ffiec-call-reports

What is pipeworx-io/mcp-ffiec-call-reports?

+

pipeworx-io/mcp-ffiec-call-reports is mcp servers for the Claude AI ecosystem. FFIEC Call Reports MCP — US bank line-item detail (fleet #338). It has 0 GitHub stars and its last recorded update is dated 2026-09-14.

How do I install mcp-ffiec-call-reports?

+

You can install mcp-ffiec-call-reports by cloning the repository (https://github.com/pipeworx-io/mcp-ffiec-call-reports) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is pipeworx-io/mcp-ffiec-call-reports safe to use?

+

Our security agent has analyzed pipeworx-io/mcp-ffiec-call-reports and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains pipeworx-io/mcp-ffiec-call-reports?

+

pipeworx-io/mcp-ffiec-call-reports is maintained by pipeworx-io. The last recorded GitHub activity is dated 2026-09-14, with 0 open issues.

Are there alternatives to mcp-ffiec-call-reports?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy mcp-ffiec-call-reports to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: pipeworx-io/mcp-ffiec-call-reports
[![Featured on ClaudeWave](https://claudewave.com/api/badge/pipeworx-io-mcp-ffiec-call-reports)](https://claudewave.com/repo/pipeworx-io-mcp-ffiec-call-reports)
<a href="https://claudewave.com/repo/pipeworx-io-mcp-ffiec-call-reports"><img src="https://claudewave.com/api/badge/pipeworx-io-mcp-ffiec-call-reports" alt="Featured on ClaudeWave: pipeworx-io/mcp-ffiec-call-reports" width="320" height="64" /></a>