dld_list_developers
Pack: dubai-land · Endpoint: https://gateway.pipeworx.io/dubai-land/mcp
Real-estate developers registered with the Dubai Land Department — developer number and name, licence dates and contact details. A date range is required and is matched against the licence dates.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | Developer name to match |
Example call
Arguments
{
"from_date": "2026-01-01",
"to_date": "2026-09-06",
"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_list_developers","arguments":{"from_date":"2026-01-01","to_date":"2026-09-06","limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dld_list_developers', {
"from_date": "2026-01-01",
"to_date": "2026-09-06",
"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.