fintech_bank_health_check

Pack: fintech-intel · Endpoint: https://gateway.pipeworx.io/fintech-intel/mcp

Assess a bank’s financial health, risk profile, and regulatory status by name (e.g., “JPMorgan Chase”). Returns FDIC data, balance sheets, compliance status, failure risk, and consumer complaints.

Parameters

NameTypeRequiredDescription
bank_namestringyesBank name to analyze

Example call

Arguments

{
  "bank_name": "JPMorgan Chase"
}

curl

curl -X POST https://gateway.pipeworx.io/fintech-intel/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fintech_bank_health_check","arguments":{"bank_name":"JPMorgan Chase"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('fintech_bank_health_check', {
  "bank_name": "JPMorgan Chase"
});

More examples

{
  "bank_name": "Bank of America"
}

Response shape

Always returns: analysis, bank_name, institution_search, financials, recent_failures_industry, consumer_complaints, industry_summary

FieldTypeDescription
analysisstringAnalysis type identifier
bank_namestringBank name analyzed
institution_searchobject | nullFDIC institution search results or null if unavailable
financialsobject | nullBank financial statements or null if not found/unavailable
recent_failures_industryobject | nullRecent banking industry failures or null if unavailable
consumer_complaintsobject | nullCFPB consumer complaints against bank or null if unavailable
industry_summaryobject | nullFDIC industry summary statistics or null if unavailable
Full JSON Schema
{
  "type": "object",
  "properties": {
    "analysis": {
      "type": "string",
      "description": "Analysis type identifier"
    },
    "bank_name": {
      "type": "string",
      "description": "Bank name analyzed"
    },
    "institution_search": {
      "type": [
        "object",
        "null"
      ],
      "description": "FDIC institution search results or null if unavailable"
    },
    "financials": {
      "type": [
        "object",
        "null"
      ],
      "description": "Bank financial statements or null if not found/unavailable"
    },
    "recent_failures_industry": {
      "type": [
        "object",
        "null"
      ],
      "description": "Recent banking industry failures or null if unavailable"
    },
    "consumer_complaints": {
      "type": [
        "object",
        "null"
      ],
      "description": "CFPB consumer complaints against bank or null if unavailable"
    },
    "industry_summary": {
      "type": [
        "object",
        "null"
      ],
      "description": "FDIC industry summary statistics or null if unavailable"
    }
  },
  "required": [
    "analysis",
    "bank_name",
    "institution_search",
    "financials",
    "recent_failures_industry",
    "consumer_complaints",
    "industry_summary"
  ]
}

Connect

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

{
  "mcpServers": {
    "fintech-intel": {
      "url": "https://gateway.pipeworx.io/fintech-intel/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026