uk.co.propbar/research

搜索与获取

by propbar

面向英国房产研究的工具集,可为 AI 提供犯罪率、学校、人口特征与估值等信息。

什么是 uk.co.propbar/research

面向英国房产研究的工具集,可为 AI 提供犯罪率、学校、人口特征与估值等信息。

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:

code
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:

<details> <summary><strong>Property Attributes</strong></summary>
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)
</details> <details> <summary><strong>Pricing & Sales</strong></summary>
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
</details> <details> <summary><strong>Market Status</strong></summary>
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
</details> <details> <summary><strong>EPC & Energy</strong></summary>
FieldDescription
epc.currentRatingCurrent EPC rating (A-G)
epc.potentialRatingPotential EPC rating
epc.currentEfficiencyCurrent efficiency score (1-100)
epc.potentialEfficiencyPotential efficiency score
</details> <details> <summary><strong>Leasehold & Charges</strong></summary>
FieldDescription
leaseYearsRemainingYears remaining on lease
charges.serviceCharge.currentAnnual service charge
charges.groundRent.currentAnnual ground rent
</details> <details> <summary><strong>Listings & Intelligence</strong></summary>
FieldDescription
listings.*Full listing data (nested)
listings.publishedDateWhen listed
listings.removedDateWhen removed
listings.priceChangePrice change history
</details>

Connection

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

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

Authentication: OAuth 2.1 via Supabase

Requirements

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

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

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

Programmatic Access

typescript
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

code
┌─────────────────────┐     ┌─────────────────────┐
│   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

json
{
  "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

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

Find nearby schools

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

Get demographics

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

OAuth Discovery

Protected Resource Metadata (RFC 9728):

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

Data Sources

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

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.

常见问题

uk.co.propbar/research 是什么?

面向英国房产研究的工具集,可为 AI 提供犯罪率、学校、人口特征与估值等信息。

相关 Skills

agent-browser

by chulla-ceja

热门

Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.

搜索与获取
未扫描3.7k

接口规范

by alexxxiong

热门

API 规范管理工具 - 跨项目 API 文档的初始化、更新、查询与搜索。Triggers: 'API文档', 'API规范', '接口文档', '路由解析', 'apispec', 'API lookup', 'API search'.

搜索与获取
未扫描3.7k

investment-research

by caijichang212

热门

Perform structured investment research (投研分析) for a company/stock/ETF/sector using a repeatable framework: fundamentals (basic/财务报表与商业模式), technical analysis (技术指标与关键价位), industry research (行业景气与竞争格局), valuation (估值对比/情景), catalysts and risks, and produce a professional research report + actionable plan. Use when the user asks for: equity/ETF analysis, earnings/financial statement breakdown, peer/industry comparison, valuation ranges, bull/base/bear scenarios, technical trend/support-resistance, or a full research memo.

搜索与获取
未扫描3.7k

相关 MCP Server

by Anthropic

热门

Puppeteer 是让 Claude 自动操作浏览器进行网页抓取和测试的 MCP 服务器。

这个服务器解决了手动编写 Puppeteer 脚本的繁琐问题,适合需要自动化网页交互的开发者,比如抓取动态内容或做端到端测试。不过,作为参考实现,它可能缺少生产级的安全防护,建议在可控环境中使用。

搜索与获取
82.9k

网页抓取

编辑精选

by Anthropic

热门

Fetch 是 MCP 官方参考服务器,让 AI 能抓取网页并转为 Markdown 格式。

这个服务器解决了 AI 直接处理网页内容时格式混乱的问题,适合需要让 Claude 分析在线文档或新闻的开发者。不过作为参考实现,它缺乏生产级的安全配置,你得自己处理反爬虫和隐私风险。

搜索与获取
82.9k

Brave 搜索

编辑精选

by Anthropic

热门

Brave Search 是让 Claude 直接调用 Brave 搜索 API 获取实时网络信息的 MCP 服务器。

如果你想让 AI 助手帮你搜索最新资讯或技术文档,这个工具能绕过传统搜索的限制,直接返回结构化数据。特别适合需要实时信息的开发者,比如查 API 更新或竞品动态。不过它依赖 Brave 的 API 配额,高频使用可能受限。

搜索与获取
82.9k

评论