# Venturu

Venturu's MCP server turns AI agents into deal scouts - letting them search the Venturu marketplace for businesses up for sale, discover brokers who can guide the process, and reach out directly to s…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add venturu/venturu-mcp

# Browse available tools
npx -y smithery tool list venturu/venturu-mcp

# Get full schema for a tool
npx -y smithery tool get venturu/venturu-mcp list_business_categories

# Call a tool
npx -y smithery tool call venturu/venturu-mcp list_business_categories '{}'
```

## Direct MCP Connection

Endpoint: `https://venturu.run.tools`

## Tools (9)

- `list_business_categories` — Returns all industry categories and their business types with IDs. Use the business type IDs in search_businesses (busi…
- `list_languages` — Returns all languages with their IDs. Use these IDs in search_brokers (languageIds) to find brokers who speak specific …
- `search_businesses` — Search for businesses (listings) for sale on Venturu. Supports natural-language location (e.g. 'Palm Beach, FL', 'Miami…
- `search_brokers` — Search for business brokers (agents) on Venturu by location, name, languages, and more. Returns verified brokers with e…
- `get_business` — Get full details for a single business (listing) by its slug. Call this when the user asks for more information about a…
- `get_broker` — Get full details for a single broker (agent) by their profile slug. Call this when the user asks for more information a…
- `contact_broker` — Send a contact message to a broker on Venturu by their profile slug. Requires an authenticated Venturu account. Provide…
- `contact_seller` — Send a contact message to a seller on Venturu by their listing ID. Requires an authenticated Venturu account. Provide t…
- `who_am_i` — Returns the identity of the currently authenticated user. Requires authentication. Use this to verify that the connecti…

```bash
# Get full input/output schema for a tool
npx -y smithery tool get venturu/venturu-mcp <tool-name>
```
