Skip to main content
Glama

ppd_transactions

Read-only

Land Registry Price Paid transactions for a postcode, most recent first.

Returns up to limit most recent transactions within snapshot coverage (coverage_from-coverage_to in the response's provenance). Unfiltered by default -- category-B bulk transfers and commercial sales are included. Pass property_type (F=flat, D=detached, S=semi, T=terraced, O=other) to restrict the result to a single type.

Not a complete property history. Check provenance.older_records_exist and provenance.sample_complete before saying anything about what a property has or has not sold for. An empty result means "no sales within the stated coverage" -- never "never sold". For clean residential comparable sales, use property_comps.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
postcodeYes
property_typeNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed15 schema fields changed
    • removedInput schema / properties / from_date
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Start date filter (ISO format, e.g. \"2023-01-01\")"
      -}
    • changedInput schema / properties / limit / default
      Previous value: -25New value: +10
    • removedInput schema / properties / limit / description
      Removed value: -"Max results to return (default 25)"
    • removedInput schema / properties / max_price
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "integer"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Maximum price filter in £"
      -}
    • removedInput schema / properties / min_price
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "integer"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Minimum price filter in £"
      -}
    • removedInput schema / properties / paon
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Primary address (house name/number) for address-based search"
      -}
    • removedInput schema / properties / postcode / anyOf
      Removed value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]
    • removedInput schema / properties / postcode / default
      Removed value: -null
    • removedInput schema / properties / postcode / description
      Removed value: -"UK postcode (e.g. \"SW1A 1AA\") - required for postcode search"
    • addedInput schema / properties / postcode / type
      Added value: +"string"
    • removedInput schema / properties / property_type / description
      Removed value: -"Filter by type: F=flat, D=detached, S=semi, T=terraced"
    • removedInput schema / properties / street
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Street name for address-based search"
      -}
    • removedInput schema / properties / to_date
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "End date filter (ISO format)"
      -}
    • removedInput schema / properties / town
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Town name for address-based search"
      -}
    • addedInput schema / required
      Added value: +[
      +  "postcode"
      +]
  2. Added
  3. Removed
  4. Changed10 schema fields changed
    • addedInput schema / properties / from_date / description
      Added value: +"Start date filter (ISO format, e.g. \"2023-01-01\")"
    • addedInput schema / properties / limit / description
      Added value: +"Max results to return (default 25)"
    • addedInput schema / properties / max_price / description
      Added value: +"Maximum price filter in £"
    • addedInput schema / properties / min_price / description
      Added value: +"Minimum price filter in £"
    • addedInput schema / properties / paon / description
      Added value: +"Primary address (house name/number) for address-based search"
    • addedInput schema / properties / postcode / description
      Added value: +"UK postcode (e.g. \"SW1A 1AA\") - required for postcode search"
    • addedInput schema / properties / property_type / description
      Added value: +"Filter by type: F=flat, D=detached, S=semi, T=terraced"
    • addedInput schema / properties / street / description
      Added value: +"Street name for address-based search"
    • addedInput schema / properties / to_date / description
      Added value: +"End date filter (ISO format)"
    • addedInput schema / properties / town / description
      Added value: +"Town name for address-based search"
  5. First observed

TDQS

A5/5.0
Behavior5/5

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

Beyond the readOnlyHint annotation, the description discloses key behaviors: results are limited to snapshot coverage, bulk and commercial sales are included by default, provenance fields like older_records_exist and sample_complete must be checked, and empty results are coverage-limited. This rich context helps the agent avoid drawing incorrect conclusions about property history.

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 front-loads the core purpose and then adds only high-value operational details: coverage, unfiltered behavior, filtering options, and caveats. Each sentence contributes essential information, and the formatting with bold caveats makes the critical warnings stand out.

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?

The description is complete for a read-only query tool: it explains ordering, coverage limits, default filtering behavior, how to restrict by property type, how to interpret empty results, and which alternative to use. Since an output schema exists, detailed return-value documentation is not needed, and the prose still references the key provenance fields.

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

Parameters5/5

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

With 0% schema description coverage, the description carries the full burden for parameters. It defines property_type with all accepted letter values and explains that limit controls 'up to `limit` most recent transactions'. Postcode is understood from the tool's purpose, and requiredness is already in the schema.

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 opening sentence states a specific verb and resource: 'Land Registry Price Paid transactions for a postcode, most recent first.' It also differentiates itself from sibling tools by defining its scope and by explicitly naming property_comps as the alternative for clean comparable sales. 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.

Usage Guidelines5/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 and when not to: it is unfiltered by default, property_type can restrict results, and 'For clean residential comparable sales, use property_comps.' It also warns not to interpret an empty result as 'never sold', providing concrete decision guidance for the agent.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation4/5

EPC coverage is split across property_epc, property_epc_summaries, epc_certificate, and the deprecated property_epc_search, but each has a distinct role (aggregate lookup, candidate list, direct certificate, legacy). Land Registry data is similarly split between ppd_transactions and property_comps with clear output differences; no two tools are truly interchangeable.

Naming Consistency3/5

Names are readable and consistently lowercase snake_case, but they mix resource nouns (epc_certificate, stamp_duty), prefixed nouns (property_epc_summaries, rightmove_listing), and noun-verb forms (company_search, planning_search). The 'search' suffix is used for different actions, and there is no uniform verb_noun pattern across the set.

Tool Count4/5

14 tools is within the appropriate range for a multi-source property data API. The count is slightly padded by the deprecated property_epc_search and the narrowly scoped planning_search/company_search, but most tools cover distinct data products.

Completeness4/5

The set covers the core property workflows: Rightmove listing discovery/detail, EPC search/detail, Land Registry transactions/comps, yield/rent analysis, stamp duty, and planning portal lookup. Minor gaps exist (no planning application details, no property-level title/ownership lookup), but agents can complete common research tasks without dead ends.