mtgmon Mortgage Analytics
Server Details
Read-only U.S. mortgage market, lender, GSE performance, and servicing analytics.
- Status
- Healthy
- Uptime
- 99.9% over 40 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 10 tools
Each tool targets a distinct domain area—lenders, HMDA products, GSE performance, market rates, servicers, SEC filings, and dataset status—and the descriptions include helpful 'Do not use for' cross-references. However, get_lender_profile and get_hmda_product_analytics both cover lender-level HMDA metrics and could be confused for product-mix questions, so it is not a perfect 5.
Tool names consistently follow a lowercase snake_case action_noun pattern: get_* for data retrieval, search_* for discovery, and compare_lenders for comparison. This makes the toolset's behavior predictable and easy to navigate.
With 10 tools, the server is well-scoped for a mortgage analytics domain. Each tool earns its place by covering a distinct data source or workflow, and the count is neither bloated nor too thin.
The set covers lender discovery and profiling, side-by-side lender comparison, HMDA product analytics, GSE loan performance, servicer analytics, market rates, SEC filing search and retrieval, and dataset status. For a read-only analytics server this is a complete surface with no obvious dead ends or missing CRUD-style operations.
Available Tools
10 toolscompare_lendersCompare HMDA lendersARead-onlyIdempotentInspect
Side-by-side HMDA comparison of two lender groups: yearly volume, loans, rank, and market share for both; loan type / purpose / occupancy mix; and the top states with each lender's volume and the volume multiple between them.
Requires canonical keys for both lenders: call search_lenders and pass each result's exact name. For a single lender use get_lender_profile.
Returns data.lenders, data.current_year, data.previous_year, data.yearly (both lenders per HMDA year), data.loan_type_mix, data.loan_purpose_mix, data.occupancy_mix, and data.top_state_comparison (top_n rows with lender_1_volume, lender_2_volume, multiple). Volumes are USD; shares are percent.
Behavior: read-only, no auth or API key, no PII, idempotent and safe to retry. The public endpoint https://mtgmon.com/mcp allows about 60 requests/min and 250 tool calls/day per client IP. Result shape is {data, meta}; meta carries available, as_of, source_scope, weighting, units, cache_status, caveats, and truncated. If meta.available is false the data is unavailable or the cache is still warming (retry after a few seconds); never report it as zero.
| Name | Required | Description | Default |
|---|---|---|---|
| top_n | No | Maximum states in top_state_comparison, 1-50 (default 10). | |
| lender_a | Yes | First lender. Canonical HMDA lender key: the exact `name` value from a search_lenders result, e.g. 'Rocket/Quicken' or 'United Wholesale Mortgage'. Legal names such as 'Rocket Mortgage, LLC' do not match and return meta.available=false. | |
| lender_b | Yes | Second lender, different from lender_a. Canonical HMDA lender key: the exact `name` value from a search_lenders result, e.g. 'Rocket/Quicken' or 'United Wholesale Mortgage'. Legal names such as 'Rocket Mortgage, LLC' do not match and return meta.available=false. |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | No | |
| meta | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes beyond the annotations by detailing read-only, idempotent, no-auth, no-PII behavior, rate limits, and the meta.available flag including cache-warming retry instructions. This fully discloses behavior without contradicting the annotations.
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 comprehensive but slightly redundant in the 'Returns' list, which repeats the same fields in a paragraph and bullet-like form. However, the structure is logical and front-loaded with purpose, making it efficient for an agent.
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 complexity, the description covers all necessary context: input requirements, output structure, meta fields, error conditions (unavailable, cache warm), and rate limits. No critical operational detail is missing.
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?
All three parameters have thorough descriptions in the schema (top_n bounds, lender_a/b canonical key requirements with examples). The description augments the schema by explaining why legal names fail and how to resolve them, exceeding the baseline coverage.
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 performs a side-by-side comparison of two lender groups across multiple dimensions (volume, loans, rank, market share, loan type/purpose/occupancy mix, top states). This distinguishes it from siblings like get_lender_profile (single lender) and search_lenders (search).
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?
Explicitly instructs users to call search_lenders first to obtain canonical keys and pass exact `name` values. Also notes that for a single lender, get_lender_profile should be used instead, providing clear alternation guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_dataset_statusDataset statusARead-onlyIdempotentInspect
Coverage, freshness, and build metadata for every mtgmon dataset. No arguments.
Use for: "how current is the data", finding the latest available month or HMDA year before quoting figures, or diagnosing another tool's meta.available=false.
Returns data.datasets, a list of {name, description, category, provider, coverage, last_updated, last_updated_label, stats, refresh} covering GSE loan performance, HMDA, market rates, SEC filings, and derived marts; and data.build {app, lake, cache_backend, cache}. Refresh cadences differ by dataset; read each row's coverage and last_updated.
Behavior: read-only, no auth or API key, no PII, idempotent and safe to retry. The public endpoint https://mtgmon.com/mcp allows about 60 requests/min and 250 tool calls/day per client IP. Result shape is {data, meta}; meta carries available, as_of, source_scope, weighting, units, cache_status, caveats, and truncated. If meta.available is false the data is unavailable or the cache is still warming (retry after a few seconds); never report it as zero.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| data | No | |
| meta | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false. The description goes beyond these by adding concrete details: no auth or API key, no PII, idempotent and safe to retry. It also discloses rate limits (60 req/min, 250 calls/day), the full response shape including meta fields (available, as_of, source_scope, weighting, units, cache_status, caveats, truncated), and the specific meaning of meta.available=false (data unavailable or cache warming, retry after a few seconds, never report as zero). This significantly enhances behavioral understanding beyond the structured annotations.
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 comprehensive yet efficiently structured. It opens with a one-line summary, then lists explicit use cases, then details the return structure and behavior. Every sentence earns its place: rate limits, meta fields, and error handling all add value without redundancy. The front-loading of the core purpose and use cases ensures an agent immediately understands when to invoke this tool.
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 has no inputs, the description fully covers what an agent needs: what data is returned (data.datasets with specific fields), the shape of the response (data and meta), and how to interpret meta.available=false. It even includes operational details like rate limits and retry behavior. The output schema is marked as present, so the description complements it without over-explaining. Nothing is missing for correct invocation and interpretation.
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 tool has zero parameters, and the description explicitly states 'No arguments.' The input schema is empty, so schema coverage is trivially 100%. With no parameters, there is nothing to explain, and the description correctly communicates this. It instead focuses on the output and behavior, which is appropriate. No gap exists in parameter semantics.
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 explicitly states the tool's function: 'Coverage, freshness, and build metadata for every mtgmon dataset.' It names the specific resource (mtgmon datasets) and the kind of information returned. It also distinguishes itself from siblings by positioning itself as a meta-tool for dataset status, with use cases like checking data currency and diagnosing meta.available=false, which none of the sibling tools (e.g., get_market_snapshot, get_hmda_product_analytics) cover.
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 explicit use cases: 'how current is the data', finding latest available month/HMDA year before quoting figures, and diagnosing another tool's meta.available=false. It also gives behavioral guidance: refresh cadences differ, read each row's coverage and last_updated. While it doesn't explicitly say 'don't use for X', the context is clear enough that an agent can decide when this tool is appropriate versus the other data-specific siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_hmda_product_analyticsHMDA product analyticsARead-onlyIdempotentInspect
HMDA origination counts, reported dollar amounts, averages, and year-over-year growth for one product family, optionally for one property state or one lender, with an annual history back to 2018.
Use for: HELOC, reverse-mortgage, or closed-end mortgage origination volume and growth; product mix by loan program (conventional/FHA/VA/USDA), purpose, lien, occupancy, construction method, or business purpose; state-level or lender-level product questions. Do not use for: lender rankings or market share (search_lenders / get_lender_profile) or GSE loan performance (get_loan_performance).
Important: product_family defaults to 'heloc'. Use 'closed_end_mortgage' for ordinary mortgages or 'all' for every HMDA origination. Source is the frozen annual FFIEC/CFPB HMDA Snapshot LAR (one release per year, 2018 onward); state filters use the property state, not the lender's headquarters.
Returns data.selected_year, data.current and data.previous (each {year, origination_count, reported_amount_count, reported_amount_sum, average_reported_amount, reported_amount_max, origination_count_yoy_pct, reported_amount_sum_yoy_pct, average_reported_amount_yoy_pct}), data.history (one such row per year), data.filters (applied filters), data.definition, and data.source_releases. Amounts are USD; YoY fields are percent; for HELOCs the amount is credit available, not the drawn balance.
Behavior: read-only, no auth or API key, no PII, idempotent and safe to retry. The public endpoint https://mtgmon.com/mcp allows about 60 requests/min and 250 tool calls/day per client IP. Result shape is {data, meta}; meta carries available, as_of, source_scope, weighting, units, cache_status, caveats, and truncated. If meta.available is false the data is unavailable or the cache is still warming (retry after a few seconds); never report it as zero.
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | HMDA activity year, 2018 or later. Default: latest published Snapshot year (see data.selected_year). | |
| state | No | Two-letter USPS code of the property state, e.g. 'TX' (not the lender HQ). Empty (default) = nationwide. | |
| lender | No | Canonical HMDA lender key: the exact `name` value from a search_lenders result, e.g. 'Rocket/Quicken' or 'United Wholesale Mortgage'. Legal names such as 'Rocket Mortgage, LLC' do not match and return meta.available=false. Default: all lenders. | |
| loan_program | No | 'all' (default), 'conventional', 'fha', 'va', 'usda_rhs', or 'unknown'. | all |
| loan_purpose | No | 'all' (default), 'purchase', 'home_improvement', 'refinance' (rate/term), 'cash_out_refinance', 'other', 'not_applicable', or 'unknown'. | all |
| lien_position | No | 'all' (default), 'first', 'subordinate', 'not_secured', 'not_applicable', or 'unknown'. | all |
| occupancy_type | No | 'all' (default), 'principal_residence', 'second_residence', 'investment_property', or 'unknown'. | all |
| product_family | No | 'heloc' (DEFAULT: open-end lines of credit that are not reverse mortgages), 'closed_end_mortgage' (ordinary first and second mortgages), 'reverse_mortgage', 'unclassified_or_exempt', or 'all' (every HMDA origination). Set this explicitly; the default is not the whole market. | heloc |
| business_purpose | No | 'all' (default: consumer + business + exempt/unknown records), 'consumer', 'business', or 'exempt_unknown'. | all |
| credit_structure | No | 'all' (default), 'open_end', 'closed_end', or 'exempt_unknown'. Usually leave 'all'; product_family already implies it. | all |
| construction_method | No | 'all' (default), 'site_built', 'manufactured', or 'unknown'. | all |
| reverse_mortgage_status | No | 'all' (default), 'reverse', 'not_reverse', or 'exempt_unknown'. Usually leave 'all'; product_family already implies it. | all |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | No | |
| meta | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the read-only and idempotent hints in annotations, the description adds significant behavioral detail: no auth or API key, no PII, rate limits (60 req/min, 250 calls/day), the exact result shape ({data, meta}), and semantics for meta.available including cache warming and retry advice. This far exceeds the annotation baseline.
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 well-structured with clear sections: summary, use cases, do-not-use cases, important caveats, return format, and behavior. Each sentence serves a purpose and the content is front-loaded with the primary function. Despite its length, it remains efficient given the tool's complexity.
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?
The description covers all necessary operational context: data source (FFIEC/CFPB HMDA Snapshot), time range (2018 onward), output fields and their units (USD, percentages), special HELOC semantics, rate limits, error handling (meta.available false), and retry behavior. The output schema is present, but the description clarifies field meanings and edge cases, making it fully complete for a caller.
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?
Although the schema already covers 100% of parameters with descriptions, the description adds critical context that the schema cannot convey, such as the default product_family being 'heloc', lender names needing to match search_lenders results exactly, and state meaning property state not lender HQ. This additional guidance is essential for correct usage.
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 returns HMDA origination counts, dollar amounts, averages, and YoY growth for a product family, optionally filtered by state or lender. It also explicitly distinguishes it from siblings by listing what it is not for, such as lender rankings or GSE performance.
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 'Use for' and 'Do not use for' sections provide explicit when-to-use and when-not-to-use guidance, including references to sibling tools. The 'Important' section further clarifies the product_family default and the distinction between property state and lender headquarters, leaving no ambiguity about appropriate contexts.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_lender_profileHMDA lender profileARead-onlyIdempotentInspect
HMDA profile for one lender group: annual origination volume, loan counts, denial rate, national rank and market share, top states with market-share multiples, and loan type / purpose / occupancy / loan-size mix.
Requires a canonical key: call search_lenders and pass the exact name (e.g. 'Rocket/Quicken'). Any other spelling returns meta.available=false with empty lists. Use compare_lenders for two lenders side by side.
Returns data.lender_key, data.name, data.leis, data.current_year, data.previous_year, data.yearly (one row per HMDA year: originated_volume, originated_loans, purchased_volume, purchased_loans, denied_loans, applications_loans, total_funded_volume, avg_loan_size, denial_rate_pct, denial_rate_count_pct, rank, national_volume, market_share_pct), data.top_states {state, volume, loans, previous_volume, previous_loans} and data.state_market_multiples {state, lender_share_pct, market_share_pct, multiple, ...} (top_n rows each), data.loan_type_mix, data.loan_purpose_mix, data.occupancy_mix ({code, label, loans, volume}), and data.loan_size_histogram. Volumes are USD; shares and rates are percent.
Behavior: read-only, no auth or API key, no PII, idempotent and safe to retry. The public endpoint https://mtgmon.com/mcp allows about 60 requests/min and 250 tool calls/day per client IP. Result shape is {data, meta}; meta carries available, as_of, source_scope, weighting, units, cache_status, caveats, and truncated. If meta.available is false the data is unavailable or the cache is still warming (retry after a few seconds); never report it as zero.
| Name | Required | Description | Default |
|---|---|---|---|
| top_n | No | Maximum rows in top_states and state_market_multiples, 1-50 (default 10). | |
| lender | Yes | Canonical HMDA lender key: the exact `name` value from a search_lenders result, e.g. 'Rocket/Quicken' or 'United Wholesale Mortgage'. Legal names such as 'Rocket Mortgage, LLC' do not match and return meta.available=false. |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | No | |
| meta | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description goes further by stating there is no auth or API key, no PII, and it is safe to retry. It also details the public endpoint rate limits (60 req/min, 250 calls/day) and explains the meta.available false case, adding substantial behavioral context beyond annotations.
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 lengthy but every sentence earns its place: it front-loads the tool's output, then addresses key requirements, behavior, and result shape. It is well-structured, with clear paragraphs for output, canonical key, behavior, and meta handling, without redundancy.
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 complexity, the description is exceptionally complete. It covers all essential aspects: return data fields, required canonical key acquisition, alternative tools, rate limits, error/retry semantics, and result shape. The output schema exists, but the description further explains the meaning of meta.available and units, making it fully self-sufficient for an agent to call correctly.
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?
Although schema description coverage is 100%, the description enhances both parameters. For lender, it clarifies it must be the exact `name` from search_lenders and provides examples and pitfalls (legal names fail). For top_n, the schema already defines it, but the description contextually ties it to the return structure (top_states and state_market_multiples). This adds meaning beyond the schema alone.
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 retrieves an HMDA profile for one lender group and enumerates the specific metrics returned (volume, counts, denial rate, rank, market share, mixes). It distinguishes itself from siblings by explicitly naming search_lenders for canonical keys and compare_lenders for side-by-side comparisons, so an agent can easily differentiate it.
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 explicit when-to-use guidance: it requires a canonical key obtained via search_lenders, warns that alternative spellings fail, and directs to compare_lenders for two-lender comparisons. It also discloses rate limits and retry behavior, leaving no ambiguity about appropriate invocation context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_loan_performanceGSE loan performanceARead-onlyIdempotentInspect
Fannie Mae and Freddie Mac single-family loan-performance analytics for exactly one topic.
Topics:
credit: monthly origination FICO and LTV (origination-UPB weighted). data.series {fico, ltv} and data.latest.
prepayment: monthly CPR and SMM (UPB weighted).
delinquency: monthly 30/60/90+ day delinquency rates (UPB-weighted stock rates).
loss: monthly loss severity (percent) and net loss (USD billions), plus data.latest_waterfall.
vintage: cumulative default-rate curves by vintage year over loan age (data.series = [{vintage, points}]).
transitions: loan-level monthly flows between Current/DQ30/DQ60/DQ90+/Modified/Liquidated (data.flows, top_n rows of {from, to, loans, upb, prob}) and data.history {cure_history, roll_30_60_history, roll_60_90_history}.
modification: outcomes at 6/12/18/24/36 months after a first 90+ DPD event, Modified vs NotModified arms (data.horizons, data.outcome_states, data.cohort_size, data.pooled, data.recent_vintages).
rate_sensitivity: modelled CPR under rate shocks (data.scenario = [{rate_shock_bps, predicted_cpr}], data.model {current_rate, current_cpr, slope}).
lock_in: active book by WAC vs today's mortgage rate: data.summary {total_upb, loan_count, wac_weighted, pct_below_mtg, pct_200bps_otm, pct_100bps_otm, pct_in_money} and data.largest_wac_age_cells {wac, age_band, upb}.
Use for: agency credit quality, prepayment speeds, delinquency, roll and cure rates, modification outcomes, losses, the lock-in effect. Do not use for: originator volume or market share (search_lenders / get_lender_profile), today's rates (get_market_snapshot), per-servicer performance (get_servicer_analytics).
Time-series topics return data.series {metric: [{date, value}, ...]} downsampled to max_points, plus data.latest. Scope is public GSE loan-level disclosures, not the whole U.S. market; meta.as_of is the latest reporting month.
Behavior: read-only, no auth or API key, no PII, idempotent and safe to retry. The public endpoint https://mtgmon.com/mcp allows about 60 requests/min and 250 tool calls/day per client IP. Result shape is {data, meta}; meta carries available, as_of, source_scope, weighting, units, cache_status, caveats, and truncated. If meta.available is false the data is unavailable or the cache is still warming (retry after a few seconds); never report it as zero.
| Name | Required | Description | Default |
|---|---|---|---|
| gse | No | 'all' = Fannie Mae + Freddie Mac combined (default), 'fnma' = Fannie Mae only, 'fhlmc' = Freddie Mac only. | all |
| top_n | No | Maximum ranked rows, 1-50 (default 20): transition flows, modification vintages, or lock-in WAC/age cells. Ignored by other topics. | |
| topic | Yes | Exactly one analytics topic: credit, prepayment, delinquency, loss (monthly time series); vintage (curves by vintage year); transitions (loan-level state flows); modification (post-90DPD outcomes); rate_sensitivity (CPR under rate shocks); lock_in (book by WAC vs today's rate). | |
| to_date | No | Latest month to include, ISO date YYYY-MM-DD; must be on or after from_date. Default: latest available month. | |
| from_date | No | Earliest month to include, ISO date YYYY-MM-DD. Applies to credit, prepayment, delinquency, loss, and transitions history. Default: full available history. | |
| max_points | No | Maximum points per time series after uniform downsampling, 1-120 (default 60). Use 120 for the finest monthly detail. Applies to time-series, vintage, and transitions topics. |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | No | |
| meta | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, but the description adds substantial non-obvious behavior: no auth/PII, public endpoint rate limits (60 req/min, 250 calls/day), the result shape {data, meta}, meta field semantics (available, as_of, source_scope, weighting, units, cache_status, caveats, truncated), and critical guidance on handling meta.available=false (retry, never report as zero). This goes well beyond the annotations and is essential for correct invocation.
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?
Despite its length, the description is tightly structured: a one-line purpose, a bulleted list of nine topics each with its data payload, a compact use/do-not-use section, and a concise behavior paragraph. Every sentence adds unique value—rate limits, meta handling, and cache-warming are all critical and not stated elsewhere. There is no fluff or repetition; it earns its length.
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?
The tool is complex (nine topics, six parameters, one required) and the description fully equips an agent to call it correctly. It covers all topics and their data shapes, parameter scoping, behavioral constraints (read-only, rate limits, retry logic), result meta semantics, and how to handle unavailable data. An output schema exists (indicated by 'Has output schema: true'), so return-value details are already structured; the description complements rather than duplicates it. Nothing essential is missing.
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% with each parameter individually described (e.g., gse enum with defaults, from_date/to_date ISO dates, top_n and max_points with ranges). The description adds cross-cutting meaning: which parameters apply to which topics (from_date applies to credit/prepayment/delinquency/loss/transitions history; top_n applies to transitions/modification/lock_in; max_points applies to time-series/vintage/transitions). It also clarifies topic-specific output shapes (data.series, data.latest, data.flows, etc.), which the schema does not cover. This enriches beyond the structured fields.
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 opens with a precise statement: 'Fannie Mae and Freddie Mac single-family loan-performance analytics for exactly one topic.' It then enumerates nine distinct topics, each with its own data shape, and explicitly names sibling tools (search_lenders, get_lender_profile, get_market_snapshot, get_servicer_analytics) to say what it is not. An agent can immediately understand the resource, scope, and how it differs from alternatives.
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?
It provides an explicit 'Use for' list (agency credit quality, prepayment speeds, delinquency, roll and cure rates, modification outcomes, losses, lock-in effect) and a 'Do not use for' list that names the exact sibling tools to route to instead (originator volume -> search_lenders/get_lender_profile, today's rates -> get_market_snapshot, per-servicer -> get_servicer_analytics). This leaves no ambiguity about when to select this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_market_snapshotMarket rate snapshotARead-onlyIdempotentInspect
Latest U.S. mortgage rates, TBA par coupons, Treasury and SOFR benchmarks, and mtgmon's fitted MBS basis in one call. No arguments.
Use for: "what are mortgage rates today", 30y vs 15y, current coupon, 2y/10y Treasury, SOFR swap levels, whether MBS spreads are rich or cheap versus the model. Do not use for: rate history (not exposed here) or GSE loan performance (get_loan_performance).
Returns data.rates, a list of up to 9 points {series, date, value, previous_value, change} for series MORTGAGE30US and MORTGAGE15US (Freddie Mac PMMS, weekly), tba_par_coupon_30y and tba_par_coupon_15y, 2Y and 10Y Treasury, and SOFR O/N, SOFR 2Y, SOFR 10Y; plus data.mbs_basis {model_version, latest_date, latest_basis_bps, latest_fair_bps, latest_gap_bps, latest_gap_zscore, r2_level_full_sample, ec_half_life_days, ...}. Rates are percent, basis is basis points. Series have different observation dates; quote each point's own date.
Behavior: read-only, no auth or API key, no PII, idempotent and safe to retry. The public endpoint https://mtgmon.com/mcp allows about 60 requests/min and 250 tool calls/day per client IP. Result shape is {data, meta}; meta carries available, as_of, source_scope, weighting, units, cache_status, caveats, and truncated. If meta.available is false the data is unavailable or the cache is still warming (retry after a few seconds); never report it as zero.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| data | No | |
| meta | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnlyHint, openWorldHint, idempotentHint), the description adds meaningful behavioral context: no auth or API key required, no PII, idempotent and safe to retry, public endpoint rate limits, and detailed meta.available handling with retry guidance. It also warns against reporting unavailable data as zero, which is valuable operational behavior not captured in annotations.
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 dense but well-structured: a one-sentence summary, followed by usage guidance, then behavior and response-shape details. Every sentence adds operational value, and the most important scoping information is front-loaded. Despite its length, nothing feels redundant given the no-parameter, output-rich nature of the tool.
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 no-argument tool with an output schema and annotations, the description is fully complete: it names all return series, explains units, warns that series have different observation dates, documents the result envelope, and explains how to handle meta.available=false. An agent has everything needed to call the tool and interpret the result correctly.
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 tool has zero parameters, so the baseline is 4. The description explicitly states 'No arguments' and the input schema confirms an empty properties object, leaving no ambiguity about how to invoke the tool.
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 opens with a specific, resource-rich statement: 'Latest U.S. mortgage rates, TBA par coupons, Treasury and SOFR benchmarks, and mtgmon's fitted MBS basis in one call.' It also distinguishes itself from sibling tools by explicitly naming get_loan_performance as the alternative for GSE loan performance. An agent can confidently know what this tool returns and what it does not.
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 explicit 'Use for' and 'Do not use for' sections, listing concrete example queries such as 'what are mortgage rates today' and naming get_loan_performance as the alternative for GSE loan performance. This gives an agent clear selection criteria with no inference required.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_sec_filingSEC filing detailARead-onlyIdempotentInspect
Full detail for one SEC filing: metadata and EDGAR link, mtgmon's machine-generated summary, which tracked mortgage entities the filing concerns and in what role, named people with titles and compensation, extracted financial facts, and ownership rows.
Get the filing_id from search_sec_filings first.
Returns data.filing {filing_id, accession_number, filer_cik, form, filing_date, company_name, description, canonical_summary, summary_status, summary_model, edgar_url, ...}, data.associations [{display_name, ticker, cik, relationship_role, summary, link_status, ...}], data.people [{name, title, compensation, note}], data.financials [{metric, value, unit, period}], and data.ownership. Each list is capped. Verify summaries against the linked filing before relying on them.
Behavior: read-only, no auth or API key, no PII, idempotent and safe to retry. The public endpoint https://mtgmon.com/mcp allows about 60 requests/min and 250 tool calls/day per client IP. Result shape is {data, meta}; meta carries available, as_of, source_scope, weighting, units, cache_status, caveats, and truncated. If meta.available is false the data is unavailable or the cache is still warming (retry after a few seconds); never report it as zero.
| Name | Required | Description | Default |
|---|---|---|---|
| filing_id | Yes | Filing identifier exactly as returned in a search_sec_filings result's filing_id field, typically the SEC accession number such as '0002100121-26-001023'. Letters, digits, '-' and '_' only. |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | No | |
| meta | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes beyond the readOnlyHint and idempotentHint annotations by stating 'read-only, no auth or API key, no PII, idempotent and safe to retry.' It discloses rate limits (60 req/min, 250 calls/day) and explains the meta.available flag behavior, including that a false value means the cache is warming and to retry rather than reporting zero.
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 structured with a clear purpose sentence, a prerequisite instruction, a detailed return shape, and a behavior section. Every sentence adds operational information; no filler. The most critical usage guidance (obtain ID from search_sec_filings) is front-loaded.
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?
The description fully equips an agent to call the tool: it specifies the return structure with field examples, explains the meta wrapper and its fields, addresses error conditions (meta.available false), and notes list caps. Combined with the output schema, nothing necessary is missing.
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 already provides 100% coverage for filing_id, including format and examples. The description adds value by telling the agent to obtain the ID from search_sec_filings, ensuring correct source. Since the schema is exhaustive, the description's contribution is supplementary but useful.
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 opens with 'Full detail for one SEC filing' and enumerates the exact content areas (metadata, EDGAR link, machine-generated summary, associations, people, financials, ownership). It clearly distinguishes itself from search_sec_filings and other analytics siblings by focusing on a single filing's detailed data.
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?
It explicitly instructs 'Get the filing_id from search_sec_filings first,' establishing the prerequisite workflow and when to use this tool. It also advises to 'Verify summaries against the linked filing before relying on them,' adding a caution about usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_servicer_analyticsAgency servicer analyticsARead-onlyIdempotentInspect
Agency (Fannie Mae / Freddie Mac) servicer analytics in one of three modes.
mode='scorecard': largest servicers ranked by disclosed origination UPB for the current and previous year with average FICO and LTV. Returns data.servicers (top_n rows of {rank, name, volume, previous_volume, avg_fico, avg_ltv}), data.current_year, data.previous_year.
mode='performance': monthly CPR and 90+ day delinquency per top servicer for one origination vintage against the whole-book benchmark. Returns data.servicers {name: {cpr: [{date, value}], dq90: [...]}} downsampled to max_points, data.book {cpr, dq90}, data.vintage, data.latest_date.
mode='transfers': where one originator's Fannie Mae loans are serviced today and how servicing moved from the seller. Requires
lender(canonical key from search_lenders). Returns data.seller_name, data.summary {loan_count, origination_upb, loans_with_transfer, pct_loans_with_transfer, total_transfer_events, ...}, data.latest_active_servicers {servicer, loans, upb, upb_share_pct}, data.top_routes and data.top_named_routes {from_servicer, to_servicer, events, event_share_pct}, data.first_to_latest {first_servicer, latest_servicer, loans, original_upb} (top_n rows each).
Use for: "largest servicers", "which servicer prepays fastest or has the worst DQ for the 2021 vintage", "who services Rocket's loans now". Do not use for: HMDA origination volume (get_lender_profile) or book-wide delinquency (get_loan_performance topic='delinquency').
Coverage is disclosed agency loans matched by seller/servicer name, not any servicer's full portfolio. UPB and volume are USD; CPR and DQ90 are percent.
Behavior: read-only, no auth or API key, no PII, idempotent and safe to retry. The public endpoint https://mtgmon.com/mcp allows about 60 requests/min and 250 tool calls/day per client IP. Result shape is {data, meta}; meta carries available, as_of, source_scope, weighting, units, cache_status, caveats, and truncated. If meta.available is false the data is unavailable or the cache is still warming (retry after a few seconds); never report it as zero.
| Name | Required | Description | Default |
|---|---|---|---|
| gse | No | 'all' = Fannie Mae + Freddie Mac combined (default), 'fnma' = Fannie Mae only, 'fhlmc' = Freddie Mac only. Used by scorecard and performance; transfers is Fannie Mae only. | all |
| mode | Yes | 'scorecard' (servicers ranked by disclosed volume), 'performance' (per-servicer CPR and DQ90 series for one vintage), or 'transfers' (one lender's servicing-transfer routes; requires `lender`). | |
| top_n | No | Maximum servicers (scorecard, performance) or rows per route list (transfers), 1-25 (default 10). | |
| lender | No | Canonical HMDA lender key: the exact `name` value from a search_lenders result, e.g. 'Rocket/Quicken' or 'United Wholesale Mortgage'. Legal names such as 'Rocket Mortgage, LLC' do not match and return meta.available=false. Required for mode='transfers'; ignored by other modes. | |
| vintage | No | Origination year for mode='performance' (default 2021). Ignored by other modes. | |
| max_points | No | Maximum points per CPR/DQ90 series for mode='performance', 1-120 (default 60). Ignored by other modes. |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | No | |
| meta | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false; the description adds substantial context beyond them: read-only, no auth/API key, no PII, idempotent and safe to retry, rate limits (60 req/min, 250 calls/day per IP), the {data, meta} response shape, and the critical meta.available=false cache-warming caveat with the instruction to never report it as zero. No contradiction with annotations.
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 long, but every sentence earns its place — modes, output shapes, use cases, exclusions, coverage limits, rate limits, response shape. It is front-loaded with the purpose and mode overview before behavioral details. Slightly verbose, but nothing is 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?
For a three-mode, six-parameter tool with an output schema present, the description is exceptionally complete: per-mode return structures are spelled out, edge cases (cache warming, canonical key mismatch, coverage scope) are covered, and error interpretation (meta.available=false) is explained. An agent has everything needed to call it correctly.
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 the baseline is 3, but the description adds real meaning beyond the schema: it explains that `lender` must be a canonical key from search_lenders and that legal names fail with meta.available=false, and it clarifies cross-parameter interactions (lender required only for transfers, vintage/max_points only for performance, gse ignored by transfers). This materially improves call correctness.
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?
States a specific verb+resource ('Agency (Fannie Mae / Freddie Mac) servicer analytics') and immediately enumerates three concrete modes with distinct output shapes (scorecard/performance/transfers). It names sibling alternatives (get_lender_profile, get_loan_performance) it is not, so an agent can disambiguate without opening schemas.
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?
Provides explicit 'Use for:' examples ('largest servicers', 'which servicer prepays fastest...', 'who services Rocket's loans now') and explicit 'Do not use for:' exclusions naming the correct alternatives for each case. Nothing is left to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_lendersSearch HMDA lendersARead-onlyIdempotentInspect
Find HMDA lenders and resolve names to canonical lender keys. Call this before any other lender tool.
Use for: turning a company name ('Rocket', 'UWM', 'Wells Fargo', 'PennyMac') into its canonical key, ranking lenders by origination volume, or listing lenders by charter type or headquarters state.
Then pass a result's exact name (e.g. 'Rocket/Quicken') as lender to get_lender_profile, get_hmda_product_analytics, or get_servicer_analytics mode='transfers', or as lender_a / lender_b to compare_lenders. Legal names such as 'Rocket Mortgage, LLC' are not keys and return meta.available=false downstream.
Returns data.results (at most limit rows of {name, leis, charter_type, hq_state, recent_year, recent_volume, total_loans, volume_rank, subsidiary_count}), data.matched_count, and data.total_count. recent_volume is USD originations in recent_year (the latest HMDA year). Keys are holding-company or originator groups, so subsidiaries and LEIs roll up into one key.
Behavior: read-only, no auth or API key, no PII, idempotent and safe to retry. The public endpoint https://mtgmon.com/mcp allows about 60 requests/min and 250 tool calls/day per client IP. Result shape is {data, meta}; meta carries available, as_of, source_scope, weighting, units, cache_status, caveats, and truncated. If meta.available is false the data is unavailable or the cache is still warming (retry after a few seconds); never report it as zero.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Result order: volume_desc (default, largest recent-year volume first), volume_asc, name_asc, name_desc, loans_desc (most loans first), rank_asc (best volume rank first). | volume_desc |
| limit | No | Maximum results, 1-25 (default 10). | |
| query | No | Case-insensitive substring of the lender name, e.g. 'rocket', 'united wholesale', 'wells'. Empty (default) returns the top lenders in sort order. | |
| state | No | Two-letter USPS code of the lender's headquarters state, e.g. 'MI'. Empty (default) = all states. | |
| charter | No | Filter by charter type exactly as shown in results' charter_type, e.g. 'Bank' or 'Independent Mortgage Company'. Empty (default) = all charter types. | |
| min_volume | No | Minimum recent-year origination volume in USD, e.g. 1000000000 for $1B+. Default 0 (no floor). |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | No | |
| meta | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive. The description adds substantial behavioral context beyond those: no auth/API key, no PII, rate limits (60 req/min, 250 calls/day), result shape ({data, meta}), meta fields (available, as_of, source_scope, etc.), and explicit guidance on handling meta.available=false (retry, don't report as zero). This is rich, non-contradictory behavioral disclosure.
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 well-structured and front-loaded: purpose, then use cases, then downstream integration, then return shape, then behavior. It is longer than average but every sentence carries information—rate limits, meta handling, and result semantics are all needed. It could be tightened slightly (e.g., some repetition of 'read-only' with annotations), but it earns its length.
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 tool with 6 optional parameters, a rich output schema, and many siblings, the description is exceptionally complete. It explains the return fields, the meta structure, error/retry behavior, rate limits, and how to chain results into other tools. It also clarifies the meaning of canonical keys vs. legal names. Nothing an agent needs to call it correctly is missing.
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% with detailed per-parameter descriptions and examples, so the baseline is 3. The description adds value by explaining the parameters' roles in the overall workflow (query for name resolution, sort for ranking, charter/state for filtering) and by clarifying result-field semantics (recent_volume is USD, keys roll up subsidiaries). It goes beyond the schema's literal parameter docs, though not dramatically.
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 states a specific verb ('Find'), a precise resource ('HMDA lenders'), and the core outcome ('resolve names to canonical lender keys'). It clearly distinguishes itself from siblings by positioning itself as the entry point ('Call this before any other lender tool') and by giving concrete example queries. This leaves no ambiguity about what the tool does.
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 explicit when-to-use guidance: 'Use for: turning a company name... into its canonical key, ranking lenders... or listing lenders by charter type or headquarters state.' It also gives when-not-to-use context ('Legal names such as... are not keys') and points to alternative tools by telling the agent to pass results to get_lender_profile, get_hmda_product_analytics, or get_servicer_analytics. This fully routes the agent to the correct workflow.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_sec_filingsSearch SEC filingsARead-onlyIdempotentInspect
Search SEC EDGAR filings of mortgage-related public companies (lenders, servicers, mortgage REITs, insurers, GSEs) that mtgmon has summarized. Newest filing date first.
Use for: finding a company's 10-K, 10-Q, 8-K, or other filings by ticker, CIK, form type, keyword, or date window, and getting the filing_id to pass to get_sec_filing. Do not use for: full filing text (only summaries are stored) or companies outside the mortgage sector.
Returns data.filings (at most limit rows of {filing_id, accession_number, filer_cik, form, filing_date, company_name, description, summary_status, summary_excerpt, summary_created_at, edgar_url}) and data.next_cursor (pass back as cursor for the next page; null when exhausted; meta.truncated is true when more pages exist). Only filings whose summary processing finished are listed; summaries are machine-generated and should be checked against edgar_url.
Behavior: read-only, no auth or API key, no PII, idempotent and safe to retry. The public endpoint https://mtgmon.com/mcp allows about 60 requests/min and 250 tool calls/day per client IP. Result shape is {data, meta}; meta carries available, as_of, source_scope, weighting, units, cache_status, caveats, and truncated. If meta.available is false the data is unavailable or the cache is still warming (retry after a few seconds); never report it as zero.
| Name | Required | Description | Default |
|---|---|---|---|
| cik | No | SEC Central Index Key of the filer, digits only, e.g. '1805284'. Empty (default) = any filer. | |
| form | No | SEC form type, e.g. '10-K', '10-Q', '8-K', 'S-1', 'DEF 14A'. Case-insensitive. Empty (default) = all forms. | |
| limit | No | Maximum filings per page, 1-25 (default 10). | |
| query | No | Free-text keyword search over company name and summary text, e.g. 'servicing portfolio sale'. Empty (default) = no text filter. | |
| cursor | No | Opaque pagination token copied from a previous result's data.next_cursor. Empty (default) = first page. | |
| ticker | No | Stock ticker of the filer, e.g. 'RKT', 'UWMC', 'PFSI'. Case-insensitive. Empty (default) = any. | |
| to_date | No | Latest filing date, ISO YYYY-MM-DD; must not be before from_date. Default: no upper bound. | |
| from_date | No | Earliest filing date, ISO YYYY-MM-DD. Default: no lower bound. | |
| summary_status | No | '' (default: all), 'summarized' (a machine summary exists), or 'unavailable' (summary could not be produced). |
Output Schema
| Name | Required | Description |
|---|---|---|
| data | No | |
| meta | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, etc., and the description goes far beyond them by specifying no auth/PII, rate limits (60 req/min, 250 calls/day), the exact result shape with meta fields, and the meaning of meta.available (cache warming vs. real zero). It also warns that summaries are machine-generated and should be checked against edgar_url. No contradictions.
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 structured logically: purpose, usage, returns, behavior. It is comprehensive but each sentence carries distinct information. It front-loads the core purpose and distinguishes from siblings, then moves to operational details. No filler or redundancy.
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 complex tool with 9 parameters, an output schema, and a paginated response, the description covers everything an agent needs: scope, filtering options, return fields, cursor semantics, rate limits, and handling of unavailable data. It also explains the relationship with get_sec_filing and the limitation to summaries. Nothing essential is missing.
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 well-documented. The description adds value beyond schema by explaining how limit affects returned rows, how cursor works for pagination, and the meaning of summary_status values (though schema covers those too). It also ties parameters to use cases. This exceeds the baseline for high schema coverage.
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 it searches SEC EDGAR filings of mortgage-related public companies, with specific detail on the types of companies and the mtgmon summarization scope. It distinguishes itself from get_sec_filing by mentioning the filing_id output and explicitly excludes full-text search and non-mortgage sectors, making it 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 has an explicit 'Use for' section listing exact use cases (finding filings by ticker, CIK, form, keyword, date window) and a 'Do not use for' section that directs away from full filing text and non-mortgage companies. It also references get_sec_filing as the intended downstream tool, providing clear routing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
8 tool updates
- Changed
compare_lenders3 fields changed- added
Input schema / properties / lender_a / descriptionAdded value: +"First lender. Canonical HMDA lender key: the exact `name` value from a search_lenders result, e.g. 'Rocket/Quicken' or 'United Wholesale Mortgage'. Legal names such as 'Rocket Mortgage, LLC' do not match and return meta.available=false." - added
Input schema / properties / lender_b / descriptionAdded value: +"Second lender, different from lender_a. Canonical HMDA lender key: the exact `name` value from a search_lenders result, e.g. 'Rocket/Quicken' or 'United Wholesale Mortgage'. Legal names such as 'Rocket Mortgage, LLC' do not match and return meta.available=false." - added
Input schema / properties / top_n / descriptionAdded value: +"Maximum states in top_state_comparison, 1-50 (default 10)."
- Changed
get_hmda_product_analytics12 fields changed- added
Input schema / properties / business_purpose / descriptionAdded value: +"'all' (default: consumer + business + exempt/unknown records), 'consumer', 'business', or 'exempt_unknown'." - added
Input schema / properties / construction_method / descriptionAdded value: +"'all' (default), 'site_built', 'manufactured', or 'unknown'." - added
Input schema / properties / credit_structure / descriptionAdded value: +"'all' (default), 'open_end', 'closed_end', or 'exempt_unknown'. Usually leave 'all'; product_family already implies it." - added
Input schema / properties / lender / descriptionAdded value: +"Canonical HMDA lender key: the exact `name` value from a search_lenders result, e.g. 'Rocket/Quicken' or 'United Wholesale Mortgage'. Legal names such as 'Rocket Mortgage, LLC' do not match and return meta.available=false. Default: all lenders." - added
Input schema / properties / lien_position / descriptionAdded value: +"'all' (default), 'first', 'subordinate', 'not_secured', 'not_applicable', or 'unknown'." - added
Input schema / properties / loan_program / descriptionAdded value: +"'all' (default), 'conventional', 'fha', 'va', 'usda_rhs', or 'unknown'." - added
Input schema / properties / loan_purpose / descriptionAdded value: +"'all' (default), 'purchase', 'home_improvement', 'refinance' (rate/term), 'cash_out_refinance', 'other', 'not_applicable', or 'unknown'." - added
Input schema / properties / occupancy_type / descriptionAdded value: +"'all' (default), 'principal_residence', 'second_residence', 'investment_property', or 'unknown'." - added
Input schema / properties / product_family / descriptionAdded value: +"'heloc' (DEFAULT: open-end lines of credit that are not reverse mortgages), 'closed_end_mortgage' (ordinary first and second mortgages), 'reverse_mortgage', 'unclassified_or_exempt', or 'all' (every HMDA origination). Set this explicitly; the default is not the whole market." - added
Input schema / properties / reverse_mortgage_status / descriptionAdded value: +"'all' (default), 'reverse', 'not_reverse', or 'exempt_unknown'. Usually leave 'all'; product_family already implies it." - added
Input schema / properties / state / descriptionAdded value: +"Two-letter USPS code of the property state, e.g. 'TX' (not the lender HQ). Empty (default) = nationwide." - added
Input schema / properties / year / descriptionAdded value: +"HMDA activity year, 2018 or later. Default: latest published Snapshot year (see data.selected_year)."
- Changed
get_lender_profile2 fields changed- added
Input schema / properties / lender / descriptionAdded value: +"Canonical HMDA lender key: the exact `name` value from a search_lenders result, e.g. 'Rocket/Quicken' or 'United Wholesale Mortgage'. Legal names such as 'Rocket Mortgage, LLC' do not match and return meta.available=false." - added
Input schema / properties / top_n / descriptionAdded value: +"Maximum rows in top_states and state_market_multiples, 1-50 (default 10)."
- Changed
get_loan_performance6 fields changed- added
Input schema / properties / from_date / descriptionAdded value: +"Earliest month to include, ISO date YYYY-MM-DD. Applies to credit, prepayment, delinquency, loss, and transitions history. Default: full available history." - added
Input schema / properties / gse / descriptionAdded value: +"'all' = Fannie Mae + Freddie Mac combined (default), 'fnma' = Fannie Mae only, 'fhlmc' = Freddie Mac only." - added
Input schema / properties / max_points / descriptionAdded value: +"Maximum points per time series after uniform downsampling, 1-120 (default 60). Use 120 for the finest monthly detail. Applies to time-series, vintage, and transitions topics." - added
Input schema / properties / to_date / descriptionAdded value: +"Latest month to include, ISO date YYYY-MM-DD; must be on or after from_date. Default: latest available month." - added
Input schema / properties / top_n / descriptionAdded value: +"Maximum ranked rows, 1-50 (default 20): transition flows, modification vintages, or lock-in WAC/age cells. Ignored by other topics." - added
Input schema / properties / topic / descriptionAdded value: +"Exactly one analytics topic: credit, prepayment, delinquency, loss (monthly time series); vintage (curves by vintage year); transitions (loan-level state flows); modification (post-90DPD outcomes); rate_sensitivity (CPR under rate shocks); lock_in (book by WAC vs today's rate)."
- Changed
get_sec_filing1 field changed- added
Input schema / properties / filing_id / descriptionAdded value: +"Filing identifier exactly as returned in a search_sec_filings result's filing_id field, typically the SEC accession number such as '0002100121-26-001023'. Letters, digits, '-' and '_' only."
- Changed
get_servicer_analytics6 fields changed- added
Input schema / properties / gse / descriptionAdded value: +"'all' = Fannie Mae + Freddie Mac combined (default), 'fnma' = Fannie Mae only, 'fhlmc' = Freddie Mac only. Used by scorecard and performance; transfers is Fannie Mae only." - added
Input schema / properties / lender / descriptionAdded value: +"Canonical HMDA lender key: the exact `name` value from a search_lenders result, e.g. 'Rocket/Quicken' or 'United Wholesale Mortgage'. Legal names such as 'Rocket Mortgage, LLC' do not match and return meta.available=false. Required for mode='transfers'; ignored by other modes." - added
Input schema / properties / max_points / descriptionAdded value: +"Maximum points per CPR/DQ90 series for mode='performance', 1-120 (default 60). Ignored by other modes." - added
Input schema / properties / mode / descriptionAdded value: +"'scorecard' (servicers ranked by disclosed volume), 'performance' (per-servicer CPR and DQ90 series for one vintage), or 'transfers' (one lender's servicing-transfer routes; requires `lender`)." - added
Input schema / properties / top_n / descriptionAdded value: +"Maximum servicers (scorecard, performance) or rows per route list (transfers), 1-25 (default 10)." - added
Input schema / properties / vintage / descriptionAdded value: +"Origination year for mode='performance' (default 2021). Ignored by other modes."
- Changed
search_lenders6 fields changed- added
Input schema / properties / charter / descriptionAdded value: +"Filter by charter type exactly as shown in results' charter_type, e.g. 'Bank' or 'Independent Mortgage Company'. Empty (default) = all charter types." - added
Input schema / properties / limit / descriptionAdded value: +"Maximum results, 1-25 (default 10)." - added
Input schema / properties / min_volume / descriptionAdded value: +"Minimum recent-year origination volume in USD, e.g. 1000000000 for $1B+. Default 0 (no floor)." - added
Input schema / properties / query / descriptionAdded value: +"Case-insensitive substring of the lender name, e.g. 'rocket', 'united wholesale', 'wells'. Empty (default) returns the top lenders in sort order." - added
Input schema / properties / sort / descriptionAdded value: +"Result order: volume_desc (default, largest recent-year volume first), volume_asc, name_asc, name_desc, loans_desc (most loans first), rank_asc (best volume rank first)." - added
Input schema / properties / state / descriptionAdded value: +"Two-letter USPS code of the lender's headquarters state, e.g. 'MI'. Empty (default) = all states."
- Changed
search_sec_filings9 fields changed- added
Input schema / properties / cik / descriptionAdded value: +"SEC Central Index Key of the filer, digits only, e.g. '1805284'. Empty (default) = any filer." - added
Input schema / properties / cursor / descriptionAdded value: +"Opaque pagination token copied from a previous result's data.next_cursor. Empty (default) = first page." - added
Input schema / properties / form / descriptionAdded value: +"SEC form type, e.g. '10-K', '10-Q', '8-K', 'S-1', 'DEF 14A'. Case-insensitive. Empty (default) = all forms." - added
Input schema / properties / from_date / descriptionAdded value: +"Earliest filing date, ISO YYYY-MM-DD. Default: no lower bound." - added
Input schema / properties / limit / descriptionAdded value: +"Maximum filings per page, 1-25 (default 10)." - added
Input schema / properties / query / descriptionAdded value: +"Free-text keyword search over company name and summary text, e.g. 'servicing portfolio sale'. Empty (default) = no text filter." - added
Input schema / properties / summary_status / descriptionAdded value: +"'' (default: all), 'summarized' (a machine summary exists), or 'unavailable' (summary could not be produced)." - added
Input schema / properties / ticker / descriptionAdded value: +"Stock ticker of the filer, e.g. 'RKT', 'UWMC', 'PFSI'. Case-insensitive. Empty (default) = any." - added
Input schema / properties / to_date / descriptionAdded value: +"Latest filing date, ISO YYYY-MM-DD; must not be before from_date. Default: no upper bound."
1 tool update
- Added
get_hmda_product_analytics
2 tool updates
- Added
get_sec_filing - Added
search_sec_filings
7 tool updates
- First observed
compare_lenders - First observed
get_dataset_status - First observed
get_lender_profile - First observed
get_loan_performance - First observed
get_market_snapshot - First observed
get_servicer_analytics - First observed
search_lenders
Related MCP Connectors
Read-only public-company financials, KPIs, benchmarks, filings, and insider activity.
Read-only impersonal market research: portfolio rankings, ticker scores, signals, daily briefs.
Read-only US public-data screening tools with free Basic and Evidence tiers.
HMDA — every US mortgage application at loan level (CFPB / FFIEC).
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceEnables read-only access to public U.S. healthcare market-intelligence datasets, including catalogs, schemas, metadata, checksums, and artifact URLs. It supports CMOs, analysts, researchers, and AI agents in discovering and consuming governed market observations without patient-level data.-

SentiSenseofficial
AlicenseNot gradedqualityCmaintenanceHosted, read-only MCP server for US market intelligence: US market mood, per-stock sentiment and the SentiSense Score, sentiment-tagged market-moving news, analyst ratings, and institutional 13F flows.MIT- AlicenseNot gradedqualityBmaintenanceProvides access to weekly US real estate market intelligence, including median list prices, days on market, inventory, and price reductions, filterable by region, property type, and quartile.2 npmMIT
- AlicenseNot gradedqualityBmaintenanceEnables access to quarterly Call Report financials, bank health metrics, failed bank lists, branch maps, and supervisory designations for every US FDIC-insured bank, with no authentication required.3 npmMIT
Glama MCP Gateway
Add one secure layer between your agents and this server.