dld_search_lands
Pack: dubai-land · Endpoint: https://gateway.pipeworx.io/dubai-land/mcp
Registered land parcels in Dubai from the Dubai Land Department — parcel and land number, area/district, zone, land type, actual area, project and master project. No date range; filter by land type, zone or project name.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
project | string | no | Project name to match |
master_project | string | no | Master-project name to match |
land_type_id | string | no | Land type: “1” Residential, “2” Agricultural, “3” Industrial, “4” Commercial, “5” Public Facilities, “6” Government Authority |
zone_id | string | no | Zone: “1” Deira, “2” Dubai |
free_hold | string | no | ”1” freehold only, “0” non-freehold only |
property_sub_type_id | string | no | Upstream property-sub-type id |
Example call
Arguments
{
"land_type_id": "1",
"limit": 3
}
curl
curl -X POST https://gateway.pipeworx.io/dubai-land/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dld_search_lands","arguments":{"land_type_id":"1","limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dld_search_lands', {
"land_type_id": "1",
"limit": 3
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dubai-land": {
"url": "https://gateway.pipeworx.io/dubai-land/mcp"
}
}
}
See Getting Started for client-specific install steps.