FDIC BankFind
Server Details
Bank financials, branch locations, deposit data, and failure history from FDIC
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 5 of 5 tools scored.
Each tool has a clearly distinct purpose targeting different FDIC data domains: bank failures, county branches, institution details, institution branches, and institution search. There is no overlap in functionality, and the descriptions clearly differentiate between failure records, branch data, and institution information.
All tools follow a consistent verb_noun pattern with clear, descriptive names: get_bank_failures, get_county_branches, get_institution, get_institution_branches, and search_institutions. The naming convention is uniform throughout the set, using snake_case and appropriate verbs (get/search) that match the action.
With 5 tools, this server is well-scoped for its FDIC banking data domain. Each tool serves a specific, non-overlapping function, covering key aspects like failures, branches, institution details, and search. The count is neither too sparse nor bloated, fitting typical MCP server ranges.
The tool set provides comprehensive coverage for querying FDIC data, including failures, branches, and institution details with search capabilities. A minor gap exists in update or administrative functions (e.g., no tools for modifying data), but this is reasonable for a read-only data server, and agents can fully navigate the available information.
Available Tools
5 toolsget_bank_failuresAInspect
Get recent bank failures from FDIC records.
Returns details of failed FDIC-insured institutions including failure
date, resolution type, estimated cost, and pre-failure assets.
Args:
state: Two-letter state abbreviation to filter by (e.g. 'CA').
start_year: Only return failures from this year onward (e.g. 2020).
| Name | Required | Description | Default |
|---|---|---|---|
| state | No | ||
| start_year | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It lists returned fields but fails to disclose behavioral traits like read-only nature, rate limits, authentication needs, or data freshness. A basic query tool with limited transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise at ~3 sentences plus parameter docs, front-loaded with purpose. Lacks slight efficiency but no verbosity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With output schema present and 2 optional parameters, the description covers core functionality. Missing details on default behavior when no parameters given, but sufficient for basic use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate. It adds useful context: 'state' as two-letter abbreviation, 'start_year' as year onward. This goes beyond raw types, though more format details could help.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Get recent bank failures from FDIC records' with a specific verb and resource, and it distinguishes from sibling tools focused on branches and institutions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage through parameters but provides no explicit when-to-use or when-not-to-use guidance, nor does it mention alternatives among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_county_branchesAInspect
Get all bank branches in a county ranked by deposits.
Returns branch-level deposit data from the Summary of Deposits (SOD)
for all institutions in the specified county.
Args:
state_fips: Two-digit state FIPS code (e.g. '06' for California).
county_fips: Three-digit county FIPS code (e.g. '037' for Los Angeles).
| Name | Required | Description | Default |
|---|---|---|---|
| state_fips | Yes | ||
| county_fips | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so description carries full burden. It mentions the output is ranked by deposits and sourced from SOD, but does not disclose data freshness, pagination, or completeness. Provides adequate transparency for a read operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Concise two-paragraph description with clear function and args section. No unnecessary words, front-loads main purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Provides essential info for a simple lookup tool. Output schema exists but return details are not in description; mentions ranking but not order. Still fairly complete given tool complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description fully explains both parameters: state_fips and county_fips, including FIPS format and examples. This adds significant value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool gets all bank branches in a county ranked by deposits, specifying the data source (Summary of Deposits). This distinguishes it from siblings like get_institution_branches (likely for a specific institution) and search_institutions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like get_institution_branches or search_institutions. The description only provides input parameters without usage context or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_institutionAInspect
Get detailed financial information for a specific FDIC-insured institution.
Returns Call Report data for the most recent reporting period (2024-06-30)
including assets, deposits, income, classification, and regulator.
Args:
cert: FDIC certificate number uniquely identifying the institution.
| Name | Required | Description | Default |
|---|---|---|---|
| cert | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool returns Call Report data for a specific reporting period and lists included categories (assets, deposits, etc.), which is transparent for a read-only tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with only 4 sentences, each adding value: purpose, return data summary, parameter explanation. No unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with an output schema, the description covers the purpose, return data scope, and parameter meaning completely. No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description compensates by explaining that 'cert' is an FDIC certificate number uniquely identifying the institution, adding essential context beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') and resource ('detailed financial information for a specific FDIC-insured institution'), which clearly distinguishes it from siblings like 'get_bank_failures' or 'search_institutions'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly states the tool's purpose and the required parameter (cert), implying use when detailed financial data is needed. However, it does not explicitly mention when not to use this tool or provide direct comparisons to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_institution_branchesAInspect
Get all branch locations for an FDIC-insured institution.
Returns branch-level data from the Summary of Deposits (SOD) including
addresses, deposit amounts, branch type, and coordinates.
Args:
cert: FDIC certificate number uniquely identifying the institution.
| Name | Required | Description | Default |
|---|---|---|---|
| cert | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description bears full behavioral disclosure burden. It describes the return data (addresses, deposits, etc.) but does not state side effects, authorization needs, rate limits, or the read-only nature. It lacks explicit safety assurances.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is reasonably concise: four sentences, front-loaded with the purpose. The 'Args:' section is somewhat unconventional but provides necessary parameter details given the sparse schema. No filler words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, output schema present), the description covers purpose, input, and high-level output. It mentions the data source (SOD) and return fields. It could include error behavior, but overall sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage for the 'cert' parameter. The description compensates fully by explaining it as 'FDIC certificate number uniquely identifying the institution', which adds crucial meaning beyond the schema type.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Get all branch locations for an FDIC-insured institution', which is a specific verb-resource pair. It distinguishes from siblings like get_institution (institution-level data) and get_county_branches (branches by county), making the tool's role unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool: when branch-level data for a specific institution is needed. However, it does not explicitly discuss when not to use it or mention alternatives (e.g., get_county_branches for county-based queries), leaving some guidance implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_institutionsAInspect
Search FDIC-insured financial institutions by name.
Returns matching banks with key financial data from the most recent
Call Report (2024-06-30), sorted by total assets descending.
Args:
search: Institution name or partial name to search for.
limit: Maximum number of results to return (default 10, max 100).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| search | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description transparently discloses return data is from the most recent Call Report (2024-06-30) and sorted by total assets descending. It implies a read-only operation via 'search' and 'returns', but does not explicitly state non-destructiveness or authentication requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured using a docstring format with an Args section. It contains no superfluous information, though the style is slightly formal.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the two parameters, no enums, and presence of an output schema, the description covers purpose, parameters, and key behavioral details. It omits error cases and explicit read-only assurance, but these are minor relative to overall completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite 0% schema description coverage, the Args section fully explains both parameters: search is an institution name or partial name, and limit has a default and maximum. This adds substantial meaning beyond the bare property titles in the input schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches FDIC-insured institutions by name and returns matching banks with key financial data sorted by total assets descending. This specific verb and resource combination, along with the search scope, distinguishes it from siblings like get_institution (which likely retrieves a single institution) and get_bank_failures.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for searching institutions by name but does not provide explicit when-to-use or when-not-to-use guidance against siblings. It lacks selection criteria such as 'use this instead of get_institution when you need a list'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!