fdic_get_institution

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

Get detailed profile for an FDIC-insured bank (e.g., CERT “5136”). Returns name, location, assets, deposits, and regulatory details.

Parameters

NameTypeRequiredDescription
certstringyesFDIC certificate number (e.g., “628” for Chase)

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_get_institution","arguments":{"cert":"628"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('fdic_get_institution', {
  "cert": "628"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Institution details from FDIC database"
}

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 May 9, 2026