npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@biznezstack/propertydata-mcp

v1.0.0

Published

MCP server for PropertyData UK property market API - Access 60+ endpoints for property valuations, market analysis, demographics, and area intelligence through Claude Desktop

Downloads

10

Readme

PropertyData MCP Server

A Model Context Protocol (MCP) server that provides seamless access to the PropertyData UK property market API through Claude Desktop and other MCP clients.

npm version License: MIT

🏠 Features

Access comprehensive UK property data including:

  • Property Valuations: Sale, rental, and HMO valuations
  • Market Analysis: Current prices, historical sales, growth trends
  • Area Intelligence: Demographics, crime stats, schools, amenities
  • Rental Data: Rental prices, yields, demand analytics, LHA rates
  • Development Tools: Build costs, GDV calculations, planning data
  • Location Data: Flood risk, transport links, energy efficiency
  • Regulatory Info: Conservation areas, green belt, planning applications
  • Financial Tools: Council tax, stamp duty calculator

60+ endpoints covering every aspect of UK property analysis!

🚀 Quick Start

Prerequisites

  1. Get a PropertyData API Key

  2. Have Claude Desktop Installed

Installation

No installation needed! Just configure Claude Desktop:

For macOS

  1. Open the config file:

    code ~/Library/Application\ Support/Claude/claude_desktop_config.json

    Or manually navigate to: ~/Library/Application Support/Claude/

  2. Add this configuration:

    {
      "mcpServers": {
        "propertydata": {
          "command": "npx",
          "args": [
            "-y",
            "@yourname/propertydata-mcp"
          ],
          "env": {
            "PROPERTYDATA_API_KEY": "your-api-key-here"
          }
        }
      }
    }

For Windows

  1. Open the config file:

    %APPDATA%\Claude\claude_desktop_config.json
  2. Add the same configuration as above

Restart Claude Desktop

Quit Claude completely (not just close the window) and restart it.

✅ Verify Installation

Ask Claude:

Can you check the PropertyData MCP server connection?

Then try a real query:

Get property prices for postcode SW1A 1AA

📚 Available Tools

Address & Property Lookup

  • address_match_uprn - Match address to UPRN
  • get_uprn_data - Get property details by UPRN
  • get_uprns - Get all UPRNs in postcode
  • get_uprn_title - Get land registry title for UPRN
  • get_title_data - Get land registry data

Property Valuations

  • get_valuation_sale - Sale price valuations
  • get_valuation_rent - Rental valuations
  • get_valuation_hmo - HMO valuations

Market Data & Prices

  • get_prices - Current property prices
  • get_prices_per_sqf - Prices per square foot
  • get_sold_prices - Historical sales data
  • get_growth_data - Price growth trends

Rental Market

  • get_rents - Rental prices
  • get_rents_hmo - HMO rental prices
  • get_yields - Rental yields
  • get_rental_demand - Demand analytics
  • get_lha_rate - Local Housing Allowance rates

Area Analysis

  • get_demographics - Population demographics
  • get_population_data - Population statistics
  • get_household_income - Income data
  • get_postcode_key_stats - Key area statistics
  • analyse_buildings - Building analysis
  • get_estate_agents - Local estate agents

Development & Investment

  • get_sourced_properties - Investment opportunities
  • development_calculator - Development metrics
  • get_build_cost - Building cost estimates

Planning & Regulations

  • get_planning_applications - Planning applications
  • get_conservation_area - Conservation area status
  • get_green_belt - Green belt status

Location & Amenities

  • get_flood_risk - Flood risk data
  • get_crime_data - Crime statistics
  • get_schools_data - Schools information
  • get_energy_efficiency - EPC ratings

Financial

  • get_council_tax - Council tax information
  • stamp_duty_calculator - Calculate stamp duty

Account

  • get_account_credits - Check API credits

💡 Example Queries

Ask Claude natural questions like:

What's the average property price in SW1A?

Get me a rental valuation for 10 Downing Street, SW1A 2AA

Show me crime statistics for postcode E1 6AN

What are the demographics of the N1 area?

Calculate stamp duty for a £500,000 property

Find HMO rental yields in M1 postcode

What's the flood risk for property in RG1?

Get planning applications in OX1 postcode

🔧 Advanced Configuration

Multiple Servers

You can run multiple MCP servers:

{
  "mcpServers": {
    "propertydata": {
      "command": "npx",
      "args": ["-y", "@yourname/propertydata-mcp"],
      "env": {
        "PROPERTYDATA_API_KEY": "your-key-here"
      }
    },
    "another-server": {
      "command": "npx",
      "args": ["-y", "@another/mcp-server"]
    }
  }
}

Use Specific Version

Pin to a specific version:

{
  "mcpServers": {
    "propertydata": {
      "command": "npx",
      "args": [
        "-y",
        "@yourname/[email protected]"
      ],
      "env": {
        "PROPERTYDATA_API_KEY": "your-key-here"
      }
    }
  }
}

🐛 Troubleshooting

Server Not Appearing

  1. Check JSON syntax - Use jsonlint.com to validate
  2. Restart Claude completely - Quit from menu, don't just close window
  3. Check logs:
    • macOS: ~/Library/Logs/Claude/
    • Windows: %APPDATA%\Claude\logs\

API Key Issues

ERROR: PROPERTYDATA_API_KEY environment variable is required

Solution: Verify the API key is correctly set in the env section

Connection Errors

  • Ensure you have an active internet connection
  • Verify your PropertyData API key is valid
  • Check your PropertyData account has available credits

NPX Not Found

Solution: Install Node.js from nodejs.org (includes npm and npx)

Slow First Start

The first time you run the server, npx downloads the package. This is normal and only happens once.

📖 API Documentation

For detailed information about each endpoint and data returned, see:

🔐 Security Notes

  • Never commit your API key to version control
  • Keep your claude_desktop_config.json private
  • API keys are only stored locally on your machine
  • The MCP server only communicates with PropertyData API

🛠️ Development

Want to modify or extend this server?

# Clone the repository
git clone https://github.com/yourusername/propertydata-mcp.git
cd propertydata-mcp

# Install dependencies
npm install

# Build
npm run build

# Test locally (requires API key)
export PROPERTYDATA_API_KEY="your-key"
npm test

📝 License

MIT License - see LICENSE file for details

🤝 Contributing

Contributions welcome! Please feel free to submit a Pull Request.

💬 Support

🔗 Links

📊 Version History

1.0.0 (Latest)

  • Initial release
  • 40+ PropertyData API endpoints
  • Full MCP protocol support
  • NPX deployment support

Made with ❤️ for UK property professionals