Introduction

The unified API and MCP Server for UK location data

Speak to Scout aggregates 28 official UK data sources into a single API endpoint and MCP Server. One postcode, one call, every data source.

Use it as a REST API for your applications, or as an MCP Server so AI agents can query UK government data natively.

Quick start

REST API

$curl -H "Authorization: Bearer YOUR_API_KEY" \
> "https://go.speaktoscout.com/api/v1/neighbourhood?postcode=SW11+5QD"

MCP Server (Claude, GPT, any MCP-compatible agent)

$npm install @speaktoscout/uk-gov-data-mcp

Add to your Claude Desktop or Claude Code config:

1{
2 "mcpServers": {
3 "uk-gov-data": {
4 "command": "npx",
5 "args": ["@speaktoscout/uk-gov-data-mcp"]
6 }
7 }
8}

Then ask your AI agent anything about a UK location:

“What’s the crime rate, demographics, and transport links for SW11 5QD?”

An API key is required. Get yours here.

What you get

Crime & Safety (3 sources)

DataSource
Crime (14 categories, street-level, outcomes)data.police.uk
Street conditions (100,000+ verified reports with photos)Community reports
Road accidents (5 years, severity, casualties)DfT STATS19

Property (5 sources)

DataSource
House prices (transactions, avg/min/max)HM Land Registry
EPC energy ratings (A-G, efficiency, heating costs)EPC Register
Council tax (band distribution, estimated costs)VOA + borough rates
Planning applications (nearby, status, type)PlanIt
Conservation areas (proximity, status)planning.data.gov.uk

Demographics & Economy (6 sources)

DataSource
Census demographics (tenure, ethnicity, age, qualifications, car ownership)Census 2021 (Nomis)
Population estimates (annual, by age group)ONS Mid-Year Estimates
Deprivation index (IMD rank and decile)IMD 2019
Household income (income bands)Census 2021 (Nomis)
Labour market (claimant count and rate)DWP (Nomis)
Companies (active businesses, industries)Companies House

Environment (4 sources)

DataSource
Flood risk (active warnings, monitoring stations)Environment Agency
Air quality (DAQI index, NO2/PM10/PM2.5)London Air Quality Network
Carbon intensity (gCO2/kWh, generation mix)National Grid ESO
Green spaces (parks, playgrounds within 1km)OpenStreetMap

Transport & Infrastructure (3 sources)

DataSource
Transport (nearest tube/rail, bus stops, commute time)TfL
Road traffic (vehicles per day at count points)Department for Transport
EV charging (chargers within 2km, connectors)Open Charge Map

Health & Care (2 sources)

DataSource
Care facilities (homes, nursing, domiciliary — CQC ratings)Care Quality Commission
Public health indicators (life expectancy, obesity, mental health, mortality)Dept. of Health & Social Care (OHID Fingertips)

Local Services (4 sources)

DataSource
Schools (name, type, phase, age range, Ofsted rating)GIAS / Ofsted
GP practices (name, postcode)NHS ODS
Food hygiene (ratings 0-5, establishment types)Food Standards Agency
Supermarkets (supermarkets + convenience stores)OpenStreetMap

Political (1 source)

DataSource
Constituency and MP (name, party)UK Parliament

MCP Tools

The MCP Server exposes 16 tools that AI agents can call:

ToolDescription
lookup_postcodeAll 28 data sources in one call
lookup_placeResolve a place name / area to a postcode
lookup_coordinatesReverse geocode lat/lng to postcode
get_crimeCrime statistics (Home Office / data.police.uk)
get_cleanlinessFixMyStreet resident-reported street conditions
get_house_pricesHM Land Registry, EPC, council tax
get_demographicsONS Census, deprivation, income, labour market
get_schoolsNearby schools with Ofsted ratings (GIAS)
get_transportTfL tube/rail, buses, commute time, EV, traffic
get_environmentDEFRA air quality, EA flood risk, green spaces
get_planningPlanning Portal applications and designations
get_local_servicesFood Standards Agency, NHS GPs, supermarkets, MP
get_careCQC care homes and domiciliary care facilities
get_public_healthOHID Fingertips public health indicators
get_companiesCompanies House — active businesses near a location
lookup_companyCompanies House — profile, directors, PSCs, charges

Use cases

  • Conveyancing & legal DD — planning history, flood risk, EPC, listed buildings, and Companies House charges in one call
  • Insurance underwriting — crime, flood, air quality, deprivation, and public health indicators for property and life risk
  • Commercial due diligence — Companies House company profiles, directors, PSCs, charges, and area business density
  • PropTech platforms — enrich listings and search with neighbourhood intelligence from one integration
  • Mortgage & lending — location risk context for affordability and underwriting decisions
  • AI agents — give any LLM-powered application structured access to 28 UK government sources
  • Health & public sector — population health planning with OHID indicators, deprivation, and care infrastructure
  • Any developer — one API replaces 28 government integrations

Query parameters

ParameterTypeRequiredDescription
postcodestringYes*UK postcode (e.g. SW11 5QD)
latfloatYes*Latitude (alternative to postcode)
lngfloatYes*Longitude (alternative to postcode)
streetstringNoStreet name for street-specific crime and condition data

*Provide either postcode or lat/lng.

Base URL

https://go.speaktoscout.com