Skip to main content
Glama
vedzilla
by vedzilla

uk-property-mcp

Unified UK housing search as an MCP server. Federates listings across Rightmove, Zoopla and OnTheMarket, deduplicates the same flat across portals, and joins every result to UK open government data: the last recorded sale in that postcode (Land Registry, address-matched where the listing carries a house number), true floor area and EPC rating, £/sqft, council tax band, flood risk, crime, schools.

Plugs into Claude Desktop / Claude Code (local) or a private, access-locked hosted instance for ChatGPT and Claude web.

Status

Feature-complete across sourcing, enrichment, federation, and a hosted UI. Verified against live UK data this build (25 offline tests pass).

  • Open-data enrichment — live over keyless UK open data (EPC optional): postcodes.io geocoding (incl. terminated-postcode fallback), HM Land Registry Price Paid via SPARQL, data.police.uk crime, Environment Agency flood. Powers get_property_intelligence, find_comparables, market_stats, resolve_location — no scraping required.

  • Rightmove adapter — typeahead location resolution, __NEXT_DATA__ search parsing, __PAGE_MODEL detail decoding (a custom numeric-reference format), and adaptive price-band tiling that beats Rightmove's ~1,050-result cap (Clapham reports 1,125 but only ~1,008 are paginable — tiling recovers the rest).

  • OnTheMarket adapter + cross-portal dedup — the same flat on multiple portals is merged into one record via geo + beds + price + address signals (an image perceptual-hash signal plugs in for the hosted tier). Verified live: Leeds search across Rightmove + OnTheMarket merged 9 cross-portal duplicates.

  • Zoopla adapter — pluggable transport: a commercial unblocker (hosted, for DataDome) or a stealth browser (local). Parser validated against a synthetic fixture; field mapping is re-checked live the first time the unblocker key is set.

  • Hosted web UI (public/index.html) — "One Roof": a search panel, then one card per home, each carrying the asking price, the portals it was found on, the most recent Land Registry sale in the same postcode, and how the asking price compares to it. Portal search rows rarely carry a house number, so that sale is labelled as a nearby comparable unless the house number matches the deed, in which case the card is marked "this exact home". Results page 24 at a time and can be sorted by price or by how far below the nearby sales they sit. One self-contained file, no build step, open or behind a bearer-token lock depending on UK_PROPERTY_PUBLIC. Served by the http entrypoint alongside /api/* and /mcp. Design system recorded in DESIGN.md; product truth in PRODUCT.md.

  • Hosted deploy — Dockerfile + fly.toml; ChatGPT deep-research search/fetch aliases on the MCP endpoint. See DEPLOY.md.

EPC (optional, one env step)

EPC is the only open source needing a free key. Without it everything else still works; with it you get true floor area and £/sqft. Register at the MHCLG Get energy performance of buildings data service, then set EPC_API_EMAIL and EPC_API_KEY.

Build note

In this environment tsc runs very slowly; iterate with npx tsx (runs the TypeScript directly) and run npm run build when you need dist/.

Related MCP server: Property Price Search MCP Server

Deploy the hosted site (one click)

Deploy to Render

Reads render.yaml, builds the Docker image, and gives you a public URL. Set UNBLOCKER_API_KEY (Scrapfly) in the dashboard to turn on Zoopla + OpenRent. See DEPLOY.md for the Fly.io alternative and how to lock it to tokens.

Add it to Claude (from GitHub)

Claude Desktop / Claude Code — runs locally, all portals, no hosting. Clone, then paste this into your MCP config (Claude Desktop → Settings → Developer → Edit Config). npm install auto-builds via the prepare script.

git clone https://github.com/vedzilla/one-roof && cd one-roof && npm install
{
  "mcpServers": {
    "one-roof": { "command": "node", "args": ["/abs/path/one-roof/dist/entrypoints/stdio.js"] }
  }
}

Restart Claude, then ask in plain English: "2-bed flats in Leeds under £270k — what did they last sell for?" The open-data tools need no keys.

Claude.ai web / ChatGPT — needs the hosted server (see DEPLOY.md). Settings → Connectors → Add custom connector → URL https://your-host/mcp (+ Authorization: Bearer <token> if locked).

Portal coverage

Portal

Segment

How

Status

Rightmove

sale + rent

__NEXT_DATA__ + tiling

✅ verified live

OnTheMarket

sale + rent

__NEXT_DATA__

✅ verified live

Zoopla

sale + rent

unblocker (hosted) / browser (local)

needs a transport key

OpenRent

rent (direct landlord)

browser / unblocker (JS-rendered prices)

needs a transport key

SpareRoom

rent (rooms / flatshares)

direct (static data-listing-*)

✅ parses live

All dedupe into one record per property. Gumtree and other niche sites are each a single adapter file implementing PortalAdapter — see src/adapters/.

The ten tools

resolve_location · search_listings · get_listing · get_property_intelligence · market_stats · compare_listings · commute_search · find_comparables · track_search · list_sources

Architecture

One shared core, two run modes (local stdio / hosted HTTP). Open-data enrichment is the durable spine and is legal to host and share; live listings are fetched politely and, for Zoopla in hosted mode, via a commercial unblocker. See NOTICE.md for the terms and src/core/ for the domain model.

Layout

src/core/         domain types, PortalAdapter interface, config
src/mcp/          server builder + the ten tool definitions
src/entrypoints/  stdio (local) and http (hosted) entrypoints
src/adapters/     per-portal adapters (Phase 3+)
src/enrichment/   open-data client (Phase 1–2)

Available Tools

10 tools
compare_listingsCompare listingsB

Normalised side-by-side comparison of several listings on price, £/sqft, EPC, and enrichment.

ParametersJSON Schema
NameRequiredDescriptionDefault
listingsYesTwo or more {portal, portalListingId} pairs.

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must carry the full burden of behavioral disclosure. It mentions 'normalised' which hints at output formatting, but does not explain behavior on missing listings, invalid IDs, return structure, or failure modes. Significant transparency gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no redundant wording. Every word adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter tool without output schema, the description gives the core purpose but lacks details on output format, enrichment meaning, or edge cases. It is minimally viable but leaves notable gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with the 'listings' parameter described as 'Two or more {portal, portalListingId} pairs.' The description adds context about what the comparison covers (price, EPC, etc.) but does not elaborate on parameter syntax beyond the schema, matching the baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: normalized side-by-side comparison of several listings on specific attributes (price, £/sqft, EPC, enrichment). It is specific about the resource and action, but does not explicitly differentiate from similar sibling tools like find_comparables.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives such as find_comparables or search_listings. The description implies usage for comparing chosen listings, but provides no explicit context or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

find_comparablesFind comparablesA

Recent nearby Land Registry sales matched on property type, size, and bedroom count — the comparables a surveyor would use.

ParametersJSON Schema
NameRequiredDescriptionDefault
uprnNo
addressNo
postcodeNo
monthsBackNo
radiusMilesNo

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden. It discloses the data source (Land Registry), recency, proximity, and matching criteria. However, it does not describe output format, edge cases (e.g., no matches), or any side effects/security concerns.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that front-loads the key information. 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.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 5 parameters, no annotations, and no output schema, the description is incomplete. It gives a high-level concept but leaves out parameter details, input usage, return structure, and potential limitations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must explain parameters. It only vaguely maps 'recent' to monthsBack and 'nearby' to radiusMiles, but does not define each parameter or the input fields (uprn, address, postcode). It also references property type, size, and bedroom count, which are not input parameters, adding ambiguity.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies the tool's purpose: retrieving recent nearby Land Registry sales matched on property type, size, and bedroom count. It distinguishes from sibling tools like search_listings or compare_listings by focusing on surveyor comparables.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context (for surveyors seeking comparables) but does not explicitly state when to use it vs. alternatives like search_listings or compare_listings. 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.

get_listingGet listing detailA

Full detail plus full open-data enrichment for one listing, by portal and portal listing id.

ParametersJSON Schema
NameRequiredDescriptionDefault
portalYesPortal id, e.g. 'rightmove'.
portalListingIdYes

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must disclose behavioral traits. It mentions 'open-data enrichment,' hinting at external data sources and aggregation, but does not explicitly state read-only, potential latency, or any side effects. The description adds some context beyond a simple 'Get listing' but lacks detail on what the enrichment entails.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, focused sentence with key information front-loaded ('Full detail plus full open-data enrichment') and no filler. It is highly concise and well-structured for quick comprehension.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and no annotations, the description is too sparse to fully prepare an agent. It does not specify what 'full detail' includes, how enrichment differs from sibling tools, or any potential limitations or prerequisites beyond the parameter identifiers. The scope is so vague that an agent might confuse it with get_property_intelligence or make incorrect assumptions about the response format.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already describes 'portal' with an example ('rightmove'), and the description merely repeats the parameter names without adding new meaning. The 'portalListingId' parameter remains undefined in both schema and description. With 50% schema coverage and no compensatory detail, the description adds minimal value beyond the parameter names.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific verb+resource: 'Full detail plus full open-data enrichment for one listing' with identification method 'by portal and portal listing id.' This distinguishes it from siblings like search_listings (which likely returns summaries) and get_property_intelligence (which targets property rather than listing).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use when you have a specific portal and portalListingId and need comprehensive data for that listing. However, it offers no explicit guidance on when to choose this over alternatives like search_listings or get_property_intelligence, and there are no stated exclusions or alternative references.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_property_intelligenceGet property intelligenceA

Everything known about an address or UPRN from open data alone — no live listing required. Sold history, EPC (incl. true floor area), council tax band, flood risk, crime density, nearby schools + Ofsted, planning, broadband. Works with zero scraping.

ParametersJSON Schema
NameRequiredDescriptionDefault
uprnNoUnique Property Reference Number, if known.
addressNoFull or partial address.
postcodeNo

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses the data scope and the 'open data only' approach, but does not mention potential limitations such as data freshness, coverage gaps, input requirements, or error behavior. This is a moderate level of transparency for a read-only data tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, front-loaded with the core purpose, and includes a concise list of data categories. Every word earns its place; it is highly efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity and lack of output schema, the description lists the data categories returned, which gives a good sense of the return value. It does not explain the response format or what happens with ambiguous inputs, but it is reasonably complete for a data lookup tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 67% (uprn and address have descriptions; postcode does not). The description adds 'address or UPRN' context, suggesting these are alternative identifiers, but it does not clarify the role of postcode or whether any parameter is required. It adds some value but does not fully compensate for the undocumented postcode parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: retrieving 'everything known about an address or UPRN from open data alone.' It lists specific data categories (sold history, EPC, etc.) and distinguishes itself from siblings like get_listing by emphasizing 'no live listing required' and 'zero scraping.'

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

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 needing open data without live listing requirements) but does not explicitly name alternatives or state when not to use it. The context is clear enough for an agent to differentiate, but lacks explicit exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_sourcesList sourcesA

Provenance for the last search: which portal adapters ran, whether each was ok/degraded/blocked, cache age, and whether coverage was complete or truncated. Use this to trust or caveat results.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses behavioral specifics: it reports on adapter status, cache age, and coverage completeness. It does not mention side effects (likely none) or behavior with no prior search, but the provided detail is substantive and accurate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences: the first defines the tool's output thoroughly, the second gives usage guidance. No wasted words, and the most critical information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite no output schema, the description enumerates the key elements returned: which adapters ran, status, cache age, and coverage type. For a zero-parameter, read-only tool, this provides sufficient context for an agent to understand and use the output.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema is empty, so there are no parameters to document. The baseline for zero parameters is 4. The description does not need to add parameter semantics since none exist.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description begins with 'Provenance for the last search' which clearly identifies the tool's purpose and resource. It then enumerates specific details (portal adapters, status, cache age, coverage) that distinguish it from sibling tools focused on search results. This is a specific verb+resource with clear scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use the tool: 'Use this to trust or caveat results.' This provides clear context for applying the tool after a search. It does not explicitly name alternatives or exclusions, but the usage instruction is direct.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

market_statsMarket statisticsB

Area-level market stats: asking vs achieved prices, £/sqft distribution, rental yields, average time on market, from Land Registry + live listings.

ParametersJSON Schema
NameRequiredDescriptionDefault
locationYes
propertyKindsNo
transactionTypeYesWhether to search properties for sale or to rent.

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of disclosing behavioral traits. It does add useful context about data sources (Land Registry + live listings), which hints at reliability and recency. However, it does not disclose limitations such as geographic coverage, update frequency, or whether a session or resolved location is required, leaving some uncertainty.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, compact sentence that front-loads the core purpose ('Area-level market stats') and then lists specific metrics. Every word adds value, with no redundant or filler content. It is appropriately sized for the tool's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the absence of an output schema and annotations, the description provides a solid overview of what the tool returns (a list of metrics) and its data sources. It does not explain how to specify location or property kinds, but those are partially inferable from the schema. For a relatively simple stats tool, it covers most necessary context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is low (33%), and the description provides no additional explanation for location or propertyKinds. It implicitly maps transactionType to metrics (e.g., rental yields to 'rent', prices to 'sale'), but does not explicitly clarify parameter usage. The description does not compensate for the schema's lack of documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool as providing area-level market statistics with a specific set of metrics (asking vs achieved prices, £/sqft distribution, rental yields, time on market). This distinguishes it from sibling tools like get_listing and search_listings, which focus on individual listings. However, it lacks an explicit verb like 'get' or 'retrieve', making the action implicit rather than explicit.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for area-level market analysis through its content, suggesting when an agent might need aggregated stats. However, it does not explicitly state when to use this tool over alternatives like search_listings or find_comparables, nor does it mention exclusions or prerequisites. The guidance is only implicit through the listed metrics.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

resolve_locationResolve locationA

Turn free text like 'Clapham', 'near Leeds station', or 'SW11' into structured geography (outcodes, centroid, per-portal identifiers). Call this first; feed its result into search_listings.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesFree-text place, postcode, or landmark.

TDQS

A4.3/5.0
Behavior3/5

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 describes transformation but does not explicitly disclose that it is read-only or free of side effects. While 'resolve' implies a safe lookup, the lack of explicit safety disclosure leaves a moderate gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the action and examples, no wasted words. The pipeline instruction is integrated efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple single-parameter schema and no output schema, the description provides sufficient context: input examples, output types, and downstream usage. It fully equips the agent for this tool's role.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, and the parameter 'query' is adequately described. The description adds examples of valid input formats, but these are illustrative rather than essential for understanding the parameter. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Turn') and defines the exact resource ('free text') and output ('structured geography') with examples. It clearly distinguishes itself from siblings like search_listings by framing itself as the prerequisite resolver.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states 'Call this first; feed its result into search_listings', giving a clear pipeline and usage context. This is unambiguous and helpful for an agent deciding when to invoke the tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_listingsSearch listingsA

Primary tool. Federated live search across every portal (Rightmove, Zoopla, OnTheMarket), deduplicated across portals and enriched with open data (last-sold price, EPC floor area, £/sqft, council tax, flood, crime, schools). Returns a coverage flag so truncation is never silent.

ParametersJSON Schema
NameRequiredDescriptionDefault
keywordsNo
locationYesPlace, postcode, or the label from resolve_location.
maxPriceNo
minPriceNo
maxBedroomsNo
minBedroomsNo
radiusMilesNo
propertyKindsNo
transactionTypeYesWhether to search properties for sale or to rent.
includeUnderOfferNo

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description discloses key behaviors: deduplication across portals, enrichment with open data (last-sold price, EPC floor area, etc.), and a coverage flag to prevent silent truncation. This goes beyond the basic purpose and provides significant transparency for an agent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, front-loaded with 'Primary tool' to immediately signal importance. Each sentence adds new information: scope, enrichment, coverage flag. No filler or redundant wording.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (10 parameters, no output schema, no annotations), the description provides a good high-level overview but lacks essential details like pagination limits, how to interpret the coverage flag, and how the enrichment data is returned. It is not fully complete for an agent to invoke it confidently without additional context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is only 20% (location and transactionType have descriptions), and the tool description does not add meaning for the remaining 8 parameters. It mentions enrichment fields but doesn't connect them to input parameters, so the agent cannot infer how to control result details from the description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool performs a federated live search across all major portals (Rightmove, Zoopla, OnTheMarket), which distinguishes it from sibling tools like resolve_location, get_listing, and market_stats. The verb 'search' and resource 'listings' are specific and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description calls it the 'Primary tool' for searching listings, implying it should be the default choice. It does not explicitly compare with alternatives like commute_search or market_stats, but the primacy signal provides clear context. However, it lacks explicit exclusion guidelines.

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. Dates show when Glama detected each change.

  1. 10 tool updatesv0.1.0
    • First observedcommute_search
    • First observedcompare_listings
    • First observedfind_comparables
    • First observedget_listing
    • First observedget_property_intelligence
    • First observedlist_sources
    • First observedmarket_stats
    • First observedresolve_location
    • First observedsearch_listings
    • First observedtrack_search

TDQS

A3.8/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: location resolution, listing search, single-listing detail, open-data intelligence, market stats, comparison, commute filtering, comparables, persistent search tracking, and data provenance. Even the two listing-related tools (search_listings and get_listing) are separated by cardinality, and get_listing vs get_property_intelligence are differentiated by data source (live portal vs open data only).

Naming Consistency4/5

Most tool names follow a consistent verb_noun pattern (resolve_location, search_listings, get_listing, compare_listings, commute_search, find_comparables, track_search, list_sources). The only deviation is 'market_stats', which is a noun phrase rather than a verb-led name, making it slightly inconsistent with the rest.

Tool Count5/5

The 10 tools are well within the ideal 3-15 range and each earns its place by covering a distinct aspect of property search, enrichment, comparison, and trust/provenance. There's no bloat or redundancy.

Completeness4/5

The surface is nearly complete for a property search server: resolving locations, searching, getting details, open-data intelligence, market stats, comparisons, commute filtering, comparables, and provenance. The only gap is that track_search allows persisting a search but provides no way to list or delete tracked searches, which is a minor dead end that agents can work around.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    C
    quality
    D
    maintenance
    Enables access to UK property listings, price estimates, agent information, and market data through the Zoopla API for searching properties for sale or rent with detailed filters and analytics.
    22
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables users to search UK property prices by postcode, street, or city using the HM Land Registry's SPARQL endpoint. It also provides tools for resolving postcodes and finding nearby locations through Ordnance Survey data.
    2
    2
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/vedzilla/one-roof'

If you have feedback or need assistance with the MCP directory API, please join our Discord server