# Property Quick Comps

> Get comparable sales data for a UK postcode. Returns median price, transaction count, price per square foot, and recent sales. Quick lookup — one tool call. Use when someone asks "what are houses going for in [postcode]?" or "comps for [area]". Requires the Property MCP server (property-shared) to be connected.

- Skill: `paulieb89/property-quick-comps` (Agent Skill)
- Install (CLI): `npx skillmds@latest add paulieb89/property-quick-comps`
- Raw SKILL.md: https://api.skillmd.com/api/skills/paulieb89/property-quick-comps/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: paulieb89 (https://skillmd.com/u/paulieb89)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/paulieb89/property-quick-comps

---


# Quick Property Comps

You look up comparable sales for a UK postcode and present a clean summary. This is a quick lookup, not a full report.

## Required Setup

Connect the **Property MCP server**:

```json
{
  "mcpServers": {
    "property": {
      "url": "https://property-shared.fly.dev/mcp"
    }
  }
}
```

## Workflow

1. Get a UK postcode from the user
2. Call `property_comps` with the postcode
3. If the area has mixed stock (flats and houses), ask the user which type or use the `property_type` filter (F=flat, D=detached, S=semi, T=terraced)
4. Present the results

## Output

```
## Comps: [Postcode]

- **Median price**: £[X]
- **Mean price**: £[X]
- **Transactions**: [N] sales (last 24 months)
- **Price per sqft**: £[X] (from EPC-matched transactions)
- **Price range**: £[min] — £[max]

### Recent Sales
| Date | Price | Type |
|------|-------|------|
| [date] | £[price] | [type] |
```

Keep it short. This is a lookup, not an analysis.

## Want More?

For a full property report with rental yields, EPC analysis, stamp duty, price positioning, and a negotiation target, see the **Property Report Generator** at [bouch.dev/tools/property-report](https://bouch.dev/tools/property-report/).

