fdic_summary
Pack: fdic · Endpoint: https://gateway.pipeworx.io/fdic/mcp
Get industry-wide totals for all FDIC-insured banks on a reporting date. Returns total assets, deposits, net income, interest income, loan count, institution count.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date | string | yes | Report date in YYYYMMDD format (e.g., “20240331” for Q1 2024) |
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
| Field | Type | Description |
|---|---|---|
report_date | string | Report date in YYYYMMDD format |
total_records | number | Total number of summary records |
summary | array | Industry-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.