fdic_summary

Pack: fdic · Endpoint: https://gateway.pipeworx.io/fdic/mcp

Get aggregate totals for FDIC-insured banks. Omit date for the most recent year with published figures; pass a year or report date for a specific one. Defaults to the US national aggregate; pass state for one state. Returns total assets, deposits, net income, interest income, institution and office counts, both combined and split by charter class (commercial bank vs savings institution).

Parameters

NameTypeRequiredDescription
datestringnoReport date as YYYYMMDD (“20241231”), YYYY-MM-DD, or a bare year (“2024”) for annual figures
statestringnoOptional full state name (e.g., “California”). Omit for the US national total.

Example call

Arguments

{
  "date": "20240331"
}

curl

curl -X POST https://gateway.pipeworx.io/fdic/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fdic_summary","arguments":{"date":"20240331"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('fdic_summary', {
  "date": "20240331"
});

Response shape

Always returns: report_date, total_records, summary

FieldTypeDescription
report_datestringReport date in YYYYMMDD format
total_recordsnumberTotal number of summary records
summaryarrayIndustry-wide summary statistics
Full JSON Schema
{
  "type": "object",
  "properties": {
    "report_date": {
      "type": "string",
      "description": "Report date in YYYYMMDD format"
    },
    "total_records": {
      "type": "number",
      "description": "Total number of summary records"
    },
    "summary": {
      "type": "array",
      "description": "Industry-wide summary statistics",
      "items": {
        "type": "object",
        "properties": {
          "total_assets": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total assets across all FDIC-insured banks"
          },
          "total_deposits": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total deposits across all FDIC-insured banks"
          },
          "net_income": {
            "type": [
              "number",
              "null"
            ],
            "description": "Net income across all FDIC-insured banks"
          },
          "interest_income": {
            "type": [
              "number",
              "null"
            ],
            "description": "Interest income across all FDIC-insured banks"
          },
          "number_of_loans": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total number of loans"
          },
          "institution_count": {
            "type": [
              "number",
              "null"
            ],
            "description": "Number of FDIC-insured institutions"
          }
        }
      }
    }
  },
  "required": [
    "report_date",
    "total_records",
    "summary"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 8, 2026