dld_search_projects
Pack: dubai-land · Endpoint: https://gateway.pipeworx.io/dubai-land/mcp
Real-estate development projects registered with the Dubai Land Department — developer, project status, percent complete, start/completion dates and location. A date range AND a date_type are both required; without date_type the upstream returns nothing.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date_type | string | yes | Which project date the range applies to: “1” start, “2” end, “3” adoption, “4” completion |
status | string | no | Project status |
project_type_id | string | no | Upstream project-type id |
zone_id | string | no | Zone: “1” Deira, “2” Dubai |
Example call
Arguments
{
"from_date": "2026-08-01",
"to_date": "2026-09-06",
"date_type": "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_projects","arguments":{"from_date":"2026-08-01","to_date":"2026-09-06","date_type":"1","limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dld_search_projects', {
"from_date": "2026-08-01",
"to_date": "2026-09-06",
"date_type": "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.