DealScanner
Server Details
Search real-estate deals, rank top areas, run rental/BRRRR/flip analysis, pull sold comps.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 7 of 7 tools scored. Lowest: 3.5/5.
Most tools are clearly distinct, but analyze_brrrr overlaps with get_property when given an address and strategy=brrrr, since both can return a BRRRR analysis. The ad-hoc input option for analyze_brrrr and the broader strategy support in get_property help clarify, yet the boundary is not fully crisp.
Tool names are mostly snake_case with a verb_object pattern (analyze_brrrr, get_comps, get_property, search_deals), but area_stats and top_investment_areas are noun phrases, and whoami is a standalone command. These minor deviations are easy to predict and remember.
With 7 tools, the server is well-scoped for a real estate deal analysis domain. Each tool covers a distinct high-level task (search, analysis, comps, stats, ranking, identity) without unnecessary redundancy or excessive fragmentation.
The surface covers the core lifecycle: searching deals, analyzing properties (flip, rental, brrrr), pulling comps, getting area stats, and ranking areas. A minor gap is the lack of a dedicated 'analyze_flip' or 'analyze_rental' tool, but get_property with strategy handles those cases, so no dead ends.
Available Tools
7 toolsanalyze_brrrrAInspect
Run a BRRRR (buy-rehab-rent-refinance-repeat) analysis.
Provide either `address` to analyze an existing listing, or the raw inputs
(`purchase_price`, `rehab_cost`, `arv`, `monthly_rent`) for an ad-hoc deal.
| Name | Required | Description | Default |
|---|---|---|---|
| arv | No | ||
| address | No | ||
| rehab_cost | No | ||
| monthly_rent | No | ||
| purchase_price | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must convey behavior on its own. It discloses the either/or input structure and that the tool performs a BRRRR analysis. However, it doesn't specify what the analysis returns (e.g., cash-on-cash return, ROI) or what happens if both input modes are provided, leaving significant behavioral gaps.
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, with the primary action front-loaded and the alternative input modes clearly separated. Every sentence provides necessary information without 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?
The description covers the key input modes and parameter grouping, but lacks several contextual details: the output format or metrics of the analysis, error handling for missing/invalid inputs, and behavior when both `address` and raw inputs are supplied. Since there is no output schema, the absence of return-value information is a notable gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description carries the burden for parameters. It names all five parameters and explains their roles: `address` for an existing listing, and `purchase_price`, `rehab_cost`, `arv`, `monthly_rent` as raw inputs. This grouping adds meaning beyond the schema's type-only definitions.
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's function: 'Run a BRRRR analysis.' It uses a specific verb and resource, and the expanded acronym 'buy-rehab-rent-refinance-repeat' adds clarity. The two input modes are mentioned, distinguishing it from sibling tools that focus on property data retrieval.
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 explicitly states the two usage modes: provide an `address` for an existing listing, or provide the raw inputs for an ad-hoc deal. This gives clear context on when and how to invoke the tool. It doesn't explicitly name alternatives like `get_property` or `get_comps`, but the domain distinction is evident.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
area_statsAInspect
Get aggregated market, sheriff, sold, and investment stats for one area.
Args:
name: Neighborhood or municipality name (e.g. "Point Breeze North").
area_type: "neighborhood" or "municipality".
Returns counts, median prices, average cap rate, and sold-comp metrics
for the area.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| area_type | No | neighborhood |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the return categories and clarifies that stats are aggregated for a single area, but omits details like default behavior for area_type, error handling, or explicit read-only confirmation. The 'Get' verb implies non-mutating behavior.
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 plus an Args block, front-loaded with the primary purpose and returning a clear list of metrics. No redundant or unnecessary content.
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?
While the description covers the main purpose and parameters, it lacks detail on the exact return structure (e.g., what constitutes 'counts' or 'sold-comp metrics') and does not provide usage context relative to sibling tools. Given no output schema, this is a notable gap for an agent parsing 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 description provides semantic context absent from the schema: 'name' is described as a neighborhood or municipality with an example, and 'area_type' is constrained to 'neighborhood' or 'municipality'. This fully compensates for the schema's lack of field descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') and identifies the resource ('aggregated market, sheriff, sold, and investment stats for one area'). It also clarifies scope ('for one area'), distinguishing it from sibling tools like top_investment_areas which likely cover multiple areas.
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 when area-level aggregated stats are needed, and provides parameter guidance, but does not explicitly mention alternatives or conditions when not to use. No exclusionary or alternative tool references are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_compsAInspect
Get recently sold comparable properties.
Args:
query: Address or area substring to match.
limit: Max results (1-100).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only explains parameters, not behavioral traits such as read-only nature, pagination, ordering, or other operational details.
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 minimal and to the point, with a clear purpose sentence and an organized Arg list. Every word earns its place without unnecessary fluff.
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 two-parameter query tool, the description covers the essential purpose and parameter semantics. It omits return format and edge cases, but given the low complexity, it is reasonably complete.
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 description adds meaningful semantics to both parameters: 'query' is clarified as an address/area substring, and 'limit' is given a range (1-100). The schema itself lacks descriptions, so this is valuable.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') and a clear resource ('recently sold comparable properties'), making it distinctly different from siblings like get_property or search_deals. It unambiguously states 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?
No guidance is provided on when to use this tool versus alternatives. There are no explicit conditions, exclusions, or references to sibling tools in the description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_propertyAInspect
Get the full DealScanner analysis for one property by street address.
Args:
address: Full property address.
strategy: "flip", "rental", or "brrrr".
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | ||
| strategy | No | flip |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations provided, so the description carries the full burden of behavioral disclosure. It states that the tool 'gets' analysis, implying read-only behavior, but it doesn't confirm this or disclose any other behaviors such as error handling, rate limits, or what happens if the address isn't found. The description adds little beyond the purpose itself.
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 remarkably concise and front-loaded. The first sentence states the purpose, and the Args section is minimal but clear. Every sentence contributes value, with no wasted words or redundant 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?
For a simple two-parameter tool, the description covers the basic use case, but it lacks detail on the return format. Since there is no output schema, the description should explain what 'full DealScanner analysis' includes or how it is structured. It also doesn't mention error scenarios, leaving the context incomplete for an agent that needs to know what to expect in the response.
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 has no descriptions (0% coverage), so the description must compensate. It explains 'address' as 'Full property address' and lists allowed values for 'strategy' (flip, rental, or brrrr). However, it doesn't explain what each strategy means or mention the default behavior when strategy is omitted, so the compensation is only partial.
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 what the tool does: 'Get the full DealScanner analysis for one property by street address.' This is specific with an action verb, resource, and scope, and it differentiates from sibling tools like get_comps or area_stats which presumably return narrower 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?
The description implies when to use this tool: when you have a specific street address and want the full analysis. However, it doesn't explicitly mention alternatives or situations where a different tool would be more appropriate, leaving the usage guidance implicit rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_dealsAInspect
Search DealScanner investment properties.
Args:
query: Address, municipality, or neighborhood text to match.
strategy: Investment lens - one of "flip", "rental", "brrrr".
min_price / max_price: Listing price bounds (USD).
beds / baths: Minimum bedroom / bathroom count.
property_class: Comma-separated neighborhood grades (A,B,C,D).
source: "market" (listed) or "sheriff" (auction).
limit: Max results (1-100).
Returns a dict with `results`, `total`, and pagination info.
| Name | Required | Description | Default |
|---|---|---|---|
| beds | No | ||
| baths | No | ||
| limit | No | ||
| query | No | ||
| source | No | market | |
| strategy | No | flip | |
| max_price | No | ||
| min_price | No | ||
| property_class | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It details parameter semantics and explicitly states the return shape ('dict with results, total, and pagination info'). It does not discuss permissions or side effects, but the search operation is inherently read-only, and the return contract is disclosed.
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 a clean 'Args:' list with one line per parameter, followed by a one-line return summary. Every sentence adds information, there is no filler, and the structure makes parameters scannable.
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 9-parameter search tool with no output schema and no annotations, this description is remarkably complete: all parameters are documented, valid values are given, units are specified, and the return object is summarized. The only minor omission is exact pagination shape, but that is not essential for initial selection.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description fully compensates by explaining every parameter: query matches address/municipality/neighborhood, strategy values, price bounds in USD, minimum beds/baths, comma-separated property classes, market vs sheriff source, and limit range (1-100). This is exactly the meaning an agent needs.
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 'Search DealScanner investment properties,' clearly stating the verb (search) and resource (DealScanner investment properties). The parameter list and sibling tool names (get_property, area_stats, top_investment_areas) show this is the listing-search tool, differentiating it from single-property or market-stats tools.
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 context for when to use this tool: when searching DealScanner investment properties by query, strategy, price, beds/baths, class, and source. It does not explicitly name alternatives or exclusions, but the sibling tool names make the use cases obvious, so it earns a 4 rather than a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
top_investment_areasAInspect
Rank the best areas to invest (neighborhoods + municipalities).
Answers "where should I invest?" using DealScanner's market intelligence.
Args:
sort_by: Ranking metric - one of "cap_rate" (avg cap rate),
"roi"/"flip_watch" (projected flip ROI), "count" (inventory),
or "price" (lowest median price first).
limit: Number of areas to return (1-50).
Returns a dict with `areas` (name, type, cap_rate, roi, count,
median_price, ...) sorted by the chosen metric.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| sort_by | No | cap_rate |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It transparently explains the sorting metrics, result format, and output fields, strongly implying a read-only query operation. Minor gaps like authentication or data freshness are not critical for this ranking tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well structured and compact, front-loading the purpose and then using Args/Returns sections to document parameters and output. Every sentence contributes actionable information 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 no annotations and no output schema, the description fully compensates by covering the tool's purpose, parameter semantics, and expected return structure. An agent has enough information to invoke the tool correctly and interpret its 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 schema has no descriptions, but the description fully covers both parameters: it lists all allowed values for sort_by with their meanings (including aliases) and the valid range for limit. This provides major value beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Rank'), resource ('areas'), and scope ('neighborhoods + municipalities'), and directly answers a concrete user question ('where should I invest?'). It clearly differentiates from siblings by emphasizing market intelligence ranking rather than individual property analysis.
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 context by stating it answers 'where should I invest?' using DealScanner's market intelligence. It does not explicitly name alternatives or mention when not to use it, but the intended use case is clear enough for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
whoamiAInspect
Return the identity and scopes of the current DealScanner API principal.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the core behavior (returning identity and scopes) but does not explicitly state that it is a read-only operation or describe any side-effect-free guarantee. The verb 'Return' implies read-only, but this is not made explicit.
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 a single sentence, front-loaded with the action, and contains no filler. Every word contributes to understanding the tool's purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with zero parameters and no output schema, the description is nearly complete. It states what is returned (identity and scopes) and the principal type. While it doesn't detail the exact fields, that is acceptable for a simple whoami tool.
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 schema is empty with 100% coverage. The baseline for 0-parameter tools is 4, and no additional parameter explanation is needed. The description adds no parameter info, which is appropriate here.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Return' and clearly identifies the resource: 'identity and scopes of the current DealScanner API principal.' This unambiguously distinguishes it from sibling tools, which all focus on deal/property data rather than authentication context.
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 intended use is implied but not explicitly stated. There is no mention of when to use this over alternatives, though the tool's purpose ('whoami') inherently signals it is for identity/scope introspection. No exclusions or alternative references are provided.
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-qualityDmaintenanceEnables AI assistants to analyze rental property deals using DoorVault IDEAL Scoring v2.0, including Section 8 FMR lookup, tax deduction checklists, and rental metrics calculations.MIT
- Alicense-qualityBmaintenanceEnables AI agents to find vetted, daily-scored US residential real-estate investment deals with pay-per-request via USDC on Base.11MIT
- 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
- Alicense-qualityBmaintenanceProvides comprehensive real estate market intelligence, property valuation, and investment analysis for AI agents. Unifies data from multiple sources like Zillow, Redfin, and public records into a single MCP interface.MIT