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

NameTypeRequiredDescription
date_typestringnoWhich date the range applies to: “0” registration, “1” contract start, “2” contract end
versionstringnoContract version filter, as seen in VERSION_EN (e.g. New, Renewed)
free_holdstringno”1” freehold only, “0” non-freehold only
usagestringnoProperty usage: “1” Residential, “2” Commercial, “3” Other
property_type_idstringnoUpstream 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.

Regenerated from source · build September 7, 2026