RateZip Bank Deposit and Mortgage Rates
Server Details
Live US savings, CD, mortgage & HELOC rates with source + timestamp on every figure.
- 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.4/5 across 4 of 4 tools scored.
Each tool targets a distinct resource or action: one calculation tool for deposit earnings, and three rate retrieval tools for CDs, mortgages, and savings accounts. There is no overlap or ambiguity between them.
All tools follow a consistent verb_noun pattern: calculate_ for the computation tool and get_ for the three rate lookup tools. The names are predictable and clearly indicate the function.
With 4 tools, the server is well-scoped for covering deposit and mortgage rate information plus a supporting calculator. Each tool earns its place without unnecessary bloat or thinness.
The tool surface covers the core requirements: retrieving CD, savings, and mortgage rates, plus a calculation feature for comparing savings yields. A minor gap is the lack of a mortgage payment calculator or historical rate lookups, but these are not essential to the stated purpose.
Available Tools
4 toolscalculate_deposit_earnings_differenceIllustrative deposit earnings differenceARead-onlyInspect
Illustrative annualized earnings difference between two savings APYs for a given balance and horizon. Defaults: current = FDIC national average savings rate, comparison = highest RateZip-observed savings APY. States every omission (taxes, penalties, rate changes, tiers, availability). Not financial advice.
| Name | Required | Description | Default |
|---|---|---|---|
| years | No | Horizon in years (APY compounds annually) | |
| balance | Yes | Deposit balance in USD | |
| current_apy_percent | No | APY the money earns today (%); defaults to the FDIC national average savings rate | |
| comparison_apy_percent | No | APY to compare against (%); defaults to the highest RateZip-observed savings APY |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true and destructiveHint=false, so the safety profile is already known. The description adds valuable behavioral context by stating it's 'Illustrative', declaring that it 'States every omission' (taxes, penalties, rate changes, tiers, availability), and adding 'Not financial advice'. This goes beyond the annotations and sets expectations about limitations.
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 three sentences and front-loaded with the main purpose in the first sentence. Every sentence earns its place: the second provides defaults, the third adds transparency about limitations and disclaimers. No wasted 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 simple calculator with good schema coverage, the description is nearly complete. It covers the calculation, defaults, and key caveats. However, it does not specify the output format (e.g., whether result is a number, currency amount, or percent), and there is no output schema to compensate. Still, the core context is well handled.
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 100%, so parameters are fully documented in the schema itself. The description adds little beyond what the schema already says—it mentions defaults that are also in the schema ('current = FDIC national average...' match the parameter descriptions). No additional meaning is provided, so the baseline score of 3 is appropriate.
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 a specific verb+resource: 'annualized earnings difference between two savings APYs for a given balance and horizon.' This distinguishes it from sibling rate lookups (get_cd_rates, get_mortgage_rates, get_savings_rates), which simply return rates rather than calculating a difference.
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 by stating defaults and scope ('for a given balance and horizon'), but it does not explicitly compare itself to alternatives or provide when/when-not guidance. There's no mention of 'use get_savings_rates if you only need current rates'. Usage is implied rather than explicitly directed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_cd_ratesGet current US CD rates by termARead-onlyInspect
Current CD APYs: FDIC national averages by term plus RateZip-observed institution rates (with terms, minimums/conditions, observation timestamps, sources, and staleness status). Pass term_months (e.g. 3, 6, 12, 24, 36, 60) to filter to one term; omit for all terms grouped by term.
| Name | Required | Description | Default |
|---|---|---|---|
| state | No | Two-letter state — adds an availability/eligibility note | |
| balance | No | Deposit balance in USD — resolves the applicable tier APY and ranks by what you'd earn | |
| term_months | No | CD term in months to filter to (omit for all terms) | |
| credit_score | No | FICO — deposit APYs generally don't vary by credit; returns a clarifying note only |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only and non-destructive behavior. The description adds valuable context about data sources (FDIC vs RateZip), the presence of observation timestamps, and staleness status, which goes beyond what annotations provide and gives a fuller picture of what to expect.
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 two sentences long, front-loaded with the core purpose, and efficiently packs essential details about data sources and filtering. Every sentence earns its place with no redundancy or filler.
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 full schema coverage, read-only annotations, and a description that explains the data components and filtering behavior, the tool is sufficiently complete for an agent to understand what it does and how to invoke it. The absence of an output schema is compensated by the description's overview of returned data attributes.
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 input schema already has 100% coverage with descriptions for all parameters. The description adds concrete examples for term_months (3, 6, 12, 24, 36, 60) and clarifies the filtering behavior, providing extra semantic 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 that the tool provides current CD APYs from FDIC national averages and RateZip-observed institution rates, including terms, minimums/conditions, timestamps, sources, and staleness. This distinguishes it from sibling tools like mortgage or savings rate getters, making the purpose 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 gives explicit guidance on using term_months to filter and that omitting it returns all terms grouped by term. However, it does not explicitly mention when not to use this tool or point to alternatives, lacking the full 'when/when-not/alternatives' specificity required for a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_mortgage_ratesGet current US mortgage ratesARead-onlyInspect
Current mortgage rates grouped by loan type: rates RateZip observed on lenders' own published rate pages, each with note rate, APR, representative-scenario conditions, observation timestamp, source, and staleness status. No third-party national-average benchmark is redistributed. Loan types include '30-year fixed' and 'HELOC'. Pass loan_type to filter to one; omit for all grouped by type. Compare only within the same loan type. Factual rate data — not a quote or advice.
| Name | Required | Description | Default |
|---|---|---|---|
| state | No | Two-letter state — adds an availability/licensing note | |
| loan_type | No | Loan type to filter to, e.g. '30-year fixed', '15-year fixed', or 'HELOC'. Omit for all. | |
| loan_amount | No | Loan amount in USD — flags conforming vs jumbo (does not fabricate a rate) | |
| credit_score | No | FICO — returns EDUCATIONAL context only; never a fabricated credit-adjusted rate |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds substantial behavioral context beyond the annotations: it discloses the data source (lenders' published rate pages), the fields included (note rate, APR, conditions, timestamp, source, staleness), and explicitly states that no third-party benchmark is redistributed and that data is factual, not a quote or advice. This aligns with readOnlyHint and avoids any contradiction.
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 compact yet information-dense, with four sentences each adding essential value: data source, grouping, filtering, caveats, and factual nature. No fluff or redundancy. The structure front-loads the main purpose and then details edge cases.
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 read-only data retrieval tool with no output schema, the description is remarkably complete: it explains what data is returned, the grouping, the source, the filtering options, and important caveats (comparability, no fabricated rates, not advice). It gives an agent everything needed to invoke correctly and interpret results.
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 input schema already covers all four parameters with descriptive text (e.g., loan_amount flags conforming vs jumbo, credit_score returns educational context). The description only adds a brief note about filtering by loan_type and the comparison rule, which is more usage guidance than parameter semantics. With 100% schema coverage, baseline 3 is appropriate.
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 identifies the tool as retrieving current US mortgage rates grouped by loan type, with a specific verb ('get') and resource ('mortgage rates'). It distinguishes itself from sibling tools (CD/savings rates) by name and by explicitly stating the data scope and loan types.
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 provides clear usage context: it explains how to filter by loan type and notes that rates should only be compared within the same loan type. It does not explicitly name alternatives or state when not to use this tool, but the sibling tools are obviously different (CD/savings rates), and the instruction to 'omit for all' gives practical guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_savings_ratesGet current US savings account ratesARead-onlyInspect
Current savings APYs: FDIC national average plus rates RateZip observed on institutions' own published rate pages. Every row carries an observation timestamp, source, and staleness status. Optional balance/state/credit_score personalize the results transparently (balance resolves the applicable tier APY; nothing is fabricated).
| Name | Required | Description | Default |
|---|---|---|---|
| state | No | Two-letter state — adds an availability/eligibility note | |
| balance | No | Deposit balance in USD — resolves the applicable tier APY and ranks by what you'd earn | |
| credit_score | No | FICO — deposit APYs generally don't vary by credit; returns a clarifying note only |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already flag read-only, and the description goes further by disclosing data provenance (RateZip observed pages), staleness status, and per-row timestamps. It also promises transparency in personalization and explicitly states nothing is fabricated, covering potential trust concerns.
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?
Two sentences, front-loaded with the core purpose, and no filler. Each clause adds a distinct piece of information.
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 no output schema, the description usefully notes row contents (timestamp, source, staleness) and personalization behavior. It doesn't explicitly state the return shape (e.g., a list of institutions), but the 'every row' wording implies tabular results and is likely 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?
Schema description coverage is 100%, so parameters are fully documented in structured fields. The description's 'balance resolves the applicable tier APY' echoes the balance schema and adds no new semantics; credit_score's 'clarifying note only' is also already in 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?
Description opens with 'Current savings APYs,' naming the exact resource and scope. It also distinguishes this from sibling rate tools by specifying savings accounts and citing FDIC national average plus RateZip observations.
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 this is for current savings rates but never explicitly states when to choose it over get_cd_rates or get_mortgage_rates. It offers no exclusion criteria or alternative recommendations.
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!
Related MCP Servers
- Alicense-qualityDmaintenanceQuery 13,000+ US consumer lenders with eligibility criteria, rates, CFPB complaints, and ratings. Find matching lenders by borrower profile, get full profiles, compare lenders, and check eligibility.MIT
- Flicense-qualityBmaintenance24 free personal-finance and macro tools (mortgage, paycheck, tax, FRED, BLS) for LLM agents. Zero API keys, stdio transport, source-cited from IRS, Federal Reserve, BLS, Treasury, and Freddie Mac.

costkits-mcpofficial
AlicenseAqualityAmaintenanceProvides live US healthcare cost data including procedure cost estimates, provider pricing, insurance coverage rules, and medical bill analysis using real hospital transparency and CMS data.12119MIT- Alicense-qualityDmaintenanceLive real estate market data for 895 US metros. Ask your AI assistant about home prices, rental yields, investment health scores, migration trends, and affordability. Free tier covers top 50 markets (no account needed). Premium tier unlocks all 895 markets, HUD Fair Market Rents, side-by-side market comparison, and filtered market search.MIT