fdic_financials
Pack: fdic · Endpoint: https://gateway.pipeworx.io/fdic/mcp
Get quarterly financial metrics for a bank by CERT ID. Returns assets, deposits, net income, interest income, loan losses, ROA, ROE, efficiency ratio.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
cert | string | yes | FDIC certificate number |
limit | number | no | Number of quarterly reports to return (default 8, which is 2 years) |
Example call
Arguments
{
"cert": "628"
}
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_financials","arguments":{"cert":"628"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fdic_financials', {
"cert": "628"
});
More examples
{
"cert": "628",
"limit": 12
}
Response shape
Always returns: cert, total_reports, financials
| Field | Type | Description |
|---|---|---|
cert | string | FDIC certificate number |
total_reports | number | Total number of financial reports |
financials | array | List of quarterly financial reports |
Full JSON Schema
{
"type": "object",
"properties": {
"cert": {
"type": "string",
"description": "FDIC certificate number"
},
"total_reports": {
"type": "number",
"description": "Total number of financial reports"
},
"financials": {
"type": "array",
"description": "List of quarterly financial reports",
"items": {
"type": "object",
"properties": {
"report_date": {
"type": [
"string",
"null"
],
"description": "Report date"
},
"total_assets": {
"type": [
"number",
"null"
],
"description": "Total assets in dollars"
},
"total_deposits": {
"type": [
"number",
"null"
],
"description": "Total deposits in dollars"
},
"net_income": {
"type": [
"number",
"null"
],
"description": "Net income in dollars"
},
"interest_income": {
"type": [
"number",
"null"
],
"description": "Interest income in dollars"
},
"loan_losses": {
"type": [
"number",
"null"
],
"description": "Loan losses in dollars"
},
"net_interest_margin": {
"type": [
"number",
"null"
],
"description": "Net interest margin ratio"
},
"roa": {
"type": [
"number",
"null"
],
"description": "Return on assets ratio"
},
"roe": {
"type": [
"number",
"null"
],
"description": "Return on equity ratio"
},
"efficiency_ratio": {
"type": [
"number",
"null"
],
"description": "Efficiency ratio"
}
}
}
}
},
"required": [
"cert",
"total_reports",
"financials"
]
}
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.