com.venturu/mcp-server
Official9 toolsThe Venturu MCP server. Search and contact business listings and brokers on Venturu.
Search business listings and contact brokers on the Venturu marketplace.
Captured live from the server via tools/list.
list_business_categories
Returns all industry categories and their business types with IDs. Use the business type IDs in search_businesses (businessTypeIds) to filter listings by category. Call this first when you need to discover which IDs to use for a given industry or business type.
No parameters.
list_languages
Returns all languages with their IDs. Use these IDs in search_brokers (languageIds) to find brokers who speak specific languages. Call this when you need to discover which language IDs to use.
No parameters.
search_businesses
Search for businesses (listings) for sale on Venturu. Supports natural-language location (e.g. 'Palm Beach, FL', 'Miami', '33101') via the location parameter, or an exact bbox. Use flat min/max fields for ranges (e.g. minPrice/maxPrice, minRevenue/maxRevenue, minProfit/maxProfit, minSde/maxSde, minOpportunityScore/maxOpportunityScore). Returns censored listing data with titles and addresses handled according to listing visibility settings.
Parameters (38)
- locationstring
- statestring
- businessTypeIdsarray
- statusesarray
- listedByarray
- saleTypesarray
- bboxobject
- minPricenumber
- maxPricenumber
- minRevenuenumber
- maxRevenuenumber
- minProfitnumber
- maxProfitnumber
- minSdenumber
- maxSdenumber
- minSdeMultiplenumber
- maxSdeMultiplenumber
- minRevenueMultiplenumber
- maxRevenueMultiplenumber
- minDownPaymentnumber
- maxDownPaymentnumber
- minEstablishmentAgenumber
- maxEstablishmentAgenumber
- minEmployeeCountnumber
- maxEmployeeCountnumber
- minOwnerWorkedHoursnumber
- maxOwnerWorkedHoursnumber
- propertyIncludedboolean
- buyerFinancingAvailableboolean
- sbaPrequalifiedboolean
- visaQualifiedboolean
- includeMissingMultiplesboolean
- minOpportunityScorenumber
- maxOpportunityScorenumber
- limitinteger
- cursorinteger
- orderByPropertystring
- orderByDirectionstring
search_brokers
Search for business brokers (agents) on Venturu by location, name, languages, and more. Returns verified brokers with email and phone redacted.
Parameters (12)
- zipCodestring
- neighborhoodstring
- citystring
- countystring
- statestring
- countryCodestring
- namestring
- languageIdsarray
- sortstring
- opportunityScoreobject
- limitinteger
- pageinteger
get_business
Get full details for a single business (listing) by its slug. Call this when the user asks for more information about a specific business. Use the slug from search_businesses results.
Parameters (1)
- slugstringrequired
get_broker
Get full details for a single broker (agent) by their profile slug. Call this when the user asks for more information about a specific broker. Use the slug from search_brokers results.
Parameters (1)
- slugstringrequired
contact_broker
Send a contact message to a broker on Venturu by their profile slug. Requires an authenticated Venturu account. Set inquiryType to "buying" (default) for buyer representation or "selling" for seller representation. Provide the broker slug and the message to send. Use search_brokers to find broker slugs.
Parameters (3)
- slugstringrequired
- messagestringrequired
- inquiryTypestring
contact_seller
Send a contact message to a seller on Venturu by their listing ID. Requires an authenticated Venturu account. Provide the listing ID and the message to send. Use search_businesses to find listing IDs.
Parameters (2)
- listingIdintegerrequired
- messagestringrequired
who_am_i
Returns the identity of the currently authenticated user. Requires authentication. Use this to verify that the connection is correctly authenticated (e.g. in the voice agent).
No parameters.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://www.venturu.com/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.