fdic_search_institutions
Pack: fdic · Endpoint: https://gateway.pipeworx.io/fdic/mcp
Search FDIC-insured banks by name. Returns institution name, CERT ID, location, total assets, deposits, net income, ROA, ROE, and report date.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
search | string | yes | Bank or institution name to search for (e.g., “Chase”, “Wells Fargo”) |
limit | number | no | Number of results to return (default 10) |
Example call
Arguments
{
"search": "Chase"
}
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_search_institutions","arguments":{"search":"Chase"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fdic_search_institutions', {
"search": "Chase"
});
More examples
{
"search": "Wells Fargo",
"limit": 5
}
Response shape
Always returns: query, total_results, institutions
| Field | Type | Description |
|---|---|---|
query | string | Search query string |
total_results | number | Total number of matching institutions |
institutions | array | List of institutions matching the search |
Full JSON Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query string"
},
"total_results": {
"type": "number",
"description": "Total number of matching institutions"
},
"institutions": {
"type": "array",
"description": "List of institutions matching the search",
"items": {
"type": "object",
"properties": {
"name": {
"type": [
"string",
"null"
],
"description": "Institution name"
},
"cert": {
"type": [
"string",
"number",
"null"
],
"description": "FDIC certificate number"
},
"city": {
"type": [
"string",
"null"
],
"description": "City location"
},
"state": {
"type": [
"string",
"null"
],
"description": "State code"
},
"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"
},
"roa": {
"type": [
"number",
"null"
],
"description": "Return on assets ratio"
},
"roe": {
"type": [
"number",
"null"
],
"description": "Return on equity ratio"
},
"report_date": {
"type": [
"string",
"null"
],
"description": "Report date"
}
}
}
}
},
"required": [
"query",
"total_results",
"institutions"
]
}
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.