MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQ

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace © 2026. All rights reserved.

Back to Browse

Research MCP Server

by Propbar
Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

UK property research tools - crime stats, schools, demographics, valuations for AI.

About

UK property research tools - crime stats, schools, demographics, valuations for AI.

Remote endpoints: streamable-http: https://mcp.propbar.co.uk

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

Endpoint verified · Requires authentication · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "uk-co-propbar-research": {
      "url": "https://mcp.propbar.co.uk"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Propbar MCP Server

MCP Registry UK Property Data

MCP server providing UK property research tools for AI assistants. Enables Claude, GPT, and other LLMs to search properties, analyse area safety, find nearby schools, explore demographics, and build automated valuation models (AVMs).

Powered by Propbar's comprehensive UK property database covering 30+ million properties.

Use Cases

Build Your Own AVM

The get_comparables tool provides access to a comprehensive property search with 50+ filterable fields - perfect for building automated valuation models:

  • Transaction Data: Sale history with dates and amounts, current asking prices
  • Market Status: For sale, SSTC, under offer, reserved, back on market dates
  • Property Attributes: Type, beds, baths, floor area, construction age
  • EPC Data: Energy ratings (A-G), efficiency scores, potential ratings
  • Tenure & Charges: Freehold/leasehold, lease years remaining, service charges, ground rent
  • Pricing Metrics: Price per sqm, price per sqft, price changes over time
  • Listing Intelligence: Days on market, price reductions, portal links

Example AVM workflow:

1. get_comparables({ latitude, longitude, propertyType: "flat", bedrooms: 2 })
2. Filter by sale date (last 12 months) and distance
3. Adjust for differences (floor area, EPC rating, condition)
4. Calculate £/sqft and apply to subject property

Property Research for Buyers

Help users make informed decisions with comprehensive area data:

  • Crime & Safety - Is this area safe? How does it compare?
  • Schools - What schools are nearby? Ofsted ratings?
  • Demographics - Who lives here? Age, tenure, household types?
  • Market Analysis - What are similar properties selling for?

Available Tools

ToolDescriptionInput
search_areasSearch UK areas by name or postcodequery
search_propertiesSearch UK properties by addressquery
get_area_detailsGet coordinates and area codesareaCode or path
get_crime_statsCrime statistics and safety ratingareaCode OR lat/lng
get_schoolsSchools with Ofsted ratingsareaCode OR lat/lng
get_demographicsCensus demographicsareaCode OR lat/lng
get_property_basicBasic property detailspropertyId
get_property_fullFull property with historypropertyId
get_comparablesComparable properties for valuationlat/lng + filters

Comparables Search Fields

The get_comparables tool queries an Elasticsearch index with 56 filterable fields:

FieldDescription
build.propertyTypeDetached, semi, terrace, flat, etc.
roomDetails.bedsNumber of bedrooms
roomDetails.bathsNumber of bathrooms
build.totalFloorAreaTotal floor area (sqm)
build.constructionAge.*Year built / construction period
tenure.typeFreehold, leasehold, share of freehold
councilTax.taxBandCouncil tax band (A-H)
FieldDescription
pricing.currentSaleCurrent asking price (sales)
pricing.currentRentCurrent asking rent (pcm)
saleHistory.dateHistorical sale dates
saleHistory.amountHistorical sale prices
marketStatus.pricePerSqmPrice per square metre
marketStatus.pricePerSqftPrice per square foot
FieldDescription
marketStatus.forSaleCurrently listed for sale
marketStatus.forRentCurrently listed for rent
marketStatus.sstcDateSold subject to contract date
marketStatus.underOfferDateUnder offer date
marketStatus.reservedDateReserved date (rentals)
marketStatus.lastOTMLast on the market date
marketStatus.backOTMBack on market flag
FieldDescription
epc.currentRatingCurrent EPC rating (A-G)
epc.potentialRatingPotential EPC rating
epc.currentEfficiencyCurrent efficiency score (1-100)
epc.potentialEfficiencyPotential efficiency score
FieldDescription
leaseYearsRemainingYears remaining on lease
charges.serviceCharge.currentAnnual service charge
charges.groundRent.currentAnnual ground rent
FieldDescription
listings.*Full listing data (nested)
listings.publishedDateWhen listed
listings.removedDateWhen removed
listings.priceChangePrice change history

Connection

Endpoint: https://mcp.propbar.co.uk

Transport: Streamable HTTP (MCP 2025-03-26)

Authentication: OAuth 2.1 via Supabase

Requirements

  • Subscription: Pro or Plus subscription required
  • Account: Sign up at propbar.co.uk

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "propbar": {
      "url": "https://mcp.propbar.co.uk"
    }
  }
}

You'll be prompted to authenticate via OAuth when first connecting.

Programmatic Access

import { Client } from '@modelcontextprotocol/sdk/client/index.js'
import { StreamableHTTPClientTransport } from '@modelcontextprotocol/sdk/client/streamableHttp.js'

const transport = new StreamableHTTPClientTransport(
  new URL('https://mcp.propbar.co.uk'),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
      },
    },
  }
)

const client = new Client({ name: 'my-app', version: '1.0.0' })
await client.connect(transport)

// Get comparables for valuation
const result = await client.callTool('get_comparables', {
  coordinates: { latitude: 51.5074, longitude: -0.1278 },
  propertyType: 'flat',
  bedrooms: 2,
  radiusKm: 1,
  transactionType: 'sale'
})

Tool Workflow

┌─────────────────────┐     ┌─────────────────────┐
│   search_areas      │     │  search_properties  │
│   (get areaCode)    │     │  (get propertyId)   │
└─────────┬───────────┘     └──────────┬──────────┘
          │                            │
          ▼                            ▼
┌─────────────────────┐     ┌─────────────────────┐
│  Area Tools:        │     │  Property Tools:    │
│  • get_crime_stats  │     │  • get_property_*   │
│  • get_schools      │     │  • get_comparables  │
│  • get_demographics │     │                     │
└─────────────────────┘     └─────────────────────┘

Flexible inputs: Most tools accept EITHER areaCode OR latitude/longitude coordinates.

Example Usage

Get comparables for valuation

{
  "tool": "get_comparables",
  "arguments": {
    "coordinates": { "latitude": 51.5074, "longitude": -0.1278 },
    "propertyType": "flat",
    "bedrooms": 2,
    "radiusKm": 1,
    "transactionType": "sale"
  }
}

Returns: Recent sales, SSTC properties, and current listings with prices, dates, floor areas, EPC ratings, and portal links.

Check area safety

{
  "tool": "get_crime_stats",
  "arguments": {
    "latitude": 53.958,
    "longitude": -1.080
  }
}

Find nearby schools

{
  "tool": "get_schools",
  "arguments": {
    "latitude": 53.9583,
    "longitude": -1.0803,
    "radiusMetres": 2000
  }
}

Get demographics

{
  "tool": "get_demographics",
  "arguments": {
    "areaCode": "E06000014",
    "topics": ["ageBands", "ethnicGroup", "tenure"]
  }
}

OAuth Discovery

Protected Resource Metadata (RFC 9728):

https://mcp.propbar.co.uk/.well-known/oauth-protected-resource

Data Sources

  • Property Data: Propbar - 30M+ UK properties with sales history, listings, EPC data
  • Crime Statistics: Police UK - Monthly crime data by location
  • Schools: Get Information About Schools - Ofsted ratings, school types
  • Demographics: UK Census 2021 - Population, households, tenure

Related Products

  • Need automated marketing? EverySignal.ai - AI-powered property marketing automation
  • Need consulting, enterprise solutions, or direct API access? Vepler.com - UK property data consulting & enterprise platform

Support

  • Website: propbar.co.uk
  • Email: hello@propbar.co.uk
  • GitHub: Propbar/mcp

License

Proprietary - Requires active Propbar subscription.


Keywords: UK property API, automated valuation model, AVM, property comparables, house price data, EPC ratings, UK house prices, property market analysis, MCP server, AI property tools, land registry data

UK property research and valuation tools for AI assistants.

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source CodeRemote Endpoint

Details

Published February 24, 2026
Version 1.1.0
0 installs
Remote Plugin

More Developer Tools MCP Servers

Fetch

Free

by Modelcontextprotocol · Developer Tools

Web content fetching and conversion for efficient LLM usage

80.0K
Stars
4
Installs
5.3
Security
No ratings yet
Local

Toleno

Free

by Toleno · Developer Tools

Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.

137
Stars
518
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace · Developer Tools

Create, build, and publish Python MCP servers to PyPI — conversationally.

-
Stars
72
Installs
10.0
Security
4.6
Local

MarkItDown

Free

by Microsoft · Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

156.1K
Stars
33
Installs
6.0
Security
5.0
Local

FinAgent

Free

by mcp-marketplace · Finance

Free stock data and market news for any MCP-compatible AI assistant.

-
Stars
20
Installs
10.0
Security
No ratings yet
Local

mcp-creator-typescript

Free

by mcp-marketplace · Developer Tools

Scaffold, build, and publish TypeScript MCP servers to npm — conversationally

-
Stars
18
Installs
10.0
Security
5.0
Local