Skip to main content

search_brokers

Search for verified business brokers (agents) on Venturu. Filter by location, name, language, and sort by various criteria.
This is a read-only tool. No authentication required.

Parameters

Location

ParameterTypeDescription
zipCodestringFind brokers advertising in a specific ZIP code
neighborhoodstringNeighborhood name
citystringCity name
countystringCounty name
statestringState or region
countryCodestringISO country code (e.g., "US", "CA")
For the best results, provide countryCode along with more specific location fields like state or city. The server uses geo-localized subdivision queries to match brokers to their service areas.

Filters

ParameterTypeDescription
namestringSearch brokers by name (case-insensitive partial match)
languageIdsnumber[]Filter by languages spoken. Get IDs from list_languages.
opportunityScoreobjectFilter by opportunity score range (min / max)

Sorting

ParameterTypeDefaultDescription
sortstringSort by: "recommended", "ai_score", "most_active", "highest_rated", "most_experienced", or "most_reviews"

Pagination

ParameterTypeDefaultDescription
limitinteger15Results per page (max 15)
pageinteger1Page number (1-indexed)

Response

The tool returns:
  • Text content — A formatted summary of matching brokers
  • Structured content — Machine-readable JSON:
{
  "brokers": [
    {
      "slug": "jane-smith",
      "name": "Jane Smith",
      "title": "Senior Business Broker",
      "company": "Smith & Associates",
      "serviceAreas": ["Miami, FL", "Fort Lauderdale, FL"],
      "languages": ["English", "Spanish"],
      "activeListings": 12
    }
  ],
  "total": 34
}
Broker email addresses and phone numbers are redacted in search results for privacy. Use the contact_broker tool to send a message.

Examples

Prompt: “Find business brokers in Los Angeles”Parameters: city: "Los Angeles", state: "California", countryCode: "US"
Prompt: “Find brokers who speak Spanish in Florida”First call list_languages to get the Spanish language ID, then pass it in languageIds along with state: "Florida".
Prompt: “Show me the most experienced brokers in Texas”Parameters: state: "Texas", countryCode: "US", sort: "most_experienced"