lookup_postcode
Pack: landregistry-uk · Endpoint: https://gateway.pipeworx.io/landregistry-uk/mcp
Convenience: list the most recent HM Land Registry property sales for a single UK postcode (England & Wales).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
postcode | string | yes | UK postcode, UPPERCASE with a space, e.g. “WA2 8SN”. |
limit | number | no | Max records to return, 1-500. Default 25. |
Example call
Arguments
{
"postcode": "WA2 8SN"
}
curl
curl -X POST https://gateway.pipeworx.io/landregistry-uk/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"lookup_postcode","arguments":{"postcode":"WA2 8SN"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('lookup_postcode', {
"postcode": "WA2 8SN"
});
More examples
{
"postcode": "M1 1AD",
"limit": 50
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"landregistry-uk": {
"url": "https://gateway.pipeworx.io/landregistry-uk/mcp"
}
}
}
See Getting Started for client-specific install steps.