ukplanning_entities_at_point

Pack: uk-planning-data · Endpoint: https://gateway.pipeworx.io/uk-planning-data/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ukplanning_entities_at_point for the schema, then POST the same URL with its arguments for the data.

Return every UK planning designation whose boundary covers one latitude/longitude — the single most useful call for site or property due diligence. Answers “is this address in a conservation area / green belt / flood risk zone”, “is there an article 4 direction here”, “which local planning authority is this”. Pass a dataset to restrict to one layer, or omit it to get every layer at once. AUTHORITATIVE, sourced from the publishing local authorities via planning.data.gov.uk. Example: ukplanning_entities_at_point({ latitude: 51.5074, longitude: -0.1276 })

Parameters

NameTypeRequiredDescription
latitudenumberyesLatitude in WGS84 decimal degrees, e.g. 51.5074
longitudenumberyesLongitude in WGS84 decimal degrees, e.g. -0.1276
datasetstringnoOptional dataset slug from ukplanning_datasets to restrict to one layer, e.g. “conservation-area”
limitnumbernoMaximum designations to return (default 25, max 100)
include_geometrybooleannoInclude the full WKT boundary of each designation (default false — a single area can be 60 KB of coordinates)

Example call

Arguments

{
  "latitude": 51.5074,
  "longitude": -0.1276,
  "limit": 8
}

curl

curl -X POST https://gateway.pipeworx.io/uk-planning-data/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ukplanning_entities_at_point","arguments":{"latitude":51.5074,"longitude":-0.1276,"limit":8}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('ukplanning_entities_at_point', {
  "latitude": 51.5074,
  "longitude": -0.1276,
  "limit": 8
});

More examples

{
  "latitude": 51.5074,
  "longitude": -0.1276,
  "dataset": "conservation-area"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "uk-planning-data": {
      "url": "https://gateway.pipeworx.io/uk-planning-data/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026