dld_search_rents
Pack: dubai-land · Endpoint: https://gateway.pipeworx.io/dubai-land/mcp
Dubai rental contracts registered through Ejari with the Dubai Land Department — contract amount, annual amount, start/end dates, area/district, property type and size. Coverage is the current calendar year. A date range is required.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date_type | string | no | Which date the range applies to: “0” registration, “1” contract start, “2” contract end |
version | string | no | Contract version filter, as seen in VERSION_EN (e.g. New, Renewed) |
free_hold | string | no | ”1” freehold only, “0” non-freehold only |
usage | string | no | Property usage: “1” Residential, “2” Commercial, “3” Other |
property_type_id | string | no | Upstream property-type id |
Example call
Arguments
{
"from_date": "2026-09-01",
"to_date": "2026-09-06",
"date_type": "0",
"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_rents","arguments":{"from_date":"2026-09-01","to_date":"2026-09-06","date_type":"0","limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dld_search_rents', {
"from_date": "2026-09-01",
"to_date": "2026-09-06",
"date_type": "0",
"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.