search_builders
Search Australian (currently NSW) builders, contractors and building companies by name; optionally filter by postcode. Returns matching entities with their licence status and a slug to pass to get_builder_risk / get_builder_timeline. Example: query='Acme Building' → '- Acme Building Pty Ltd (Current), 2099 → slug: acme-building-pty-ltd-1a2b'. Names are matched loosely, so try the trading name AND the legal (Pty Ltd) name if the first search misses. Query must be at least 2 characters.
Parameters2
| query | string | required | Builder or company name, e.g. 'Acme Building' |
| postcode | string | optional | Optional NSW postcode filter, e.g. '2099' |
Raw schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 2,
"description": "Builder or company name, e.g. 'Acme Building'"
},
"postcode": {
"type": "string",
"description": "Optional NSW postcode filter, e.g. '2099'"
}
},
"required": [
"query"
]
}