# La Growth Machine — how to use (mcp.ai)

Connect your La Growth Machine account and use 13 tools for marketing automation straight from your AI agent. Connect with your own API key. Save time and focus on closing deals. Automate manual sales rep routines and streamline outreach with multi-channel campaigns.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_lagrowthmachine?ms=1787291160000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `lagrowthmachine_add_rb2b_visitor_to_audience`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/lagrowthmachine`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/lagrowthmachine/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/lagrowthmachine/add/rb2b/visitor/to/audience` — Tool to add RB2B website visitor to a LaGrowthMachine audience via native webhook. Use when you need to push identified website visitors from RB2B into a specific audience for outreach campaigns.
  - body: { City?: string, Tags?: string, State?: string, Title?: string, Website?: string, Zipcode?: string, seen_at?: string, Industry?: string, Referrer?: string, last_name?: string, first_name?: string, captured_url?: string, company_name?: string, linkedin_url?: string, audience_name: string, business_email?: string, employee_count?: integer, estimate_revenue?: string }
- `POST https://api.mcp.ai/api/lagrowthmachine/create/audience/from/linkedin/url` — Tool to import leads into La Growth Machine audiences from LinkedIn URLs. Accepts LinkedIn Regular search URLs, Sales Navigator search URLs, or LinkedIn post URLs. Requires specifying the identity to 
  - body: { audience: string, autoImport?: boolean, identityId: string, linkedinUrl: string, linkedinPostCategory?: string, excludeContactedLeads?: boolean }
- `POST https://api.mcp.ai/api/lagrowthmachine/create/inbox/webhook` — Tool to create an inbox webhook for real-time notifications. Use when you need to receive notifications about LinkedIn and Email messages sent or received by leads in La Growth Machine campaigns.
  - body: { url: string, name: string, campaigns?: string[], description?: string }
- `POST https://api.mcp.ai/api/lagrowthmachine/create/or/update/lead` — Tool to create or update a lead in LaGrowthMachine. Requires audience plus at least one identifier: proEmail, persoEmail, linkedinUrl, twitter, or firstname+lastname with companyUrl/companyName. Use l
  - body: { phone?: string, gender?: string, leadId?: string, twitter?: string, audience: string, industry?: string, jobTitle?: string, lastname?: string, location?: string, proEmail?: string, firstname?: string, companyUrl?: string, persoEmail?: string, companyName?: string, linkedinUrl?: string, customAttribute1?: string, customAttribute2?: string, customAttribute3?: string, customAttribute4?: string, customAttribute5?: string, customAttribute6?: string, customAttribute7?: string, customAttribute8?: string, customAttribute9?: string, customAttribute10?: string }
- `POST https://api.mcp.ai/api/lagrowthmachine/delete/inbox/webhook` — Tool to delete an existing inbox webhook by its ID. Use when you need to stop receiving inbox events at the webhook URL.
  - body: { webhook_id: string }
- `POST https://api.mcp.ai/api/lagrowthmachine/get/campaigns` — Tool to retrieve all campaigns from LaGrowthMachine with pagination support. Use when you need to list campaigns, with optional skip and limit parameters for pagination (max 25 per page).
  - body: { skip?: integer, limit?: integer }
- `POST https://api.mcp.ai/api/lagrowthmachine/list/audiences` — Tool to list all audiences in your LaGrowthMachine account. Use when you need to retrieve audience details including ID, name, description, size, type, and source URL.
- `POST https://api.mcp.ai/api/lagrowthmachine/list/identities` — Tool to list all connected identities in your LaGrowthMachine account. Use when you need to retrieve identity IDs for sending LinkedIn or Email messages through other APIs.
- `POST https://api.mcp.ai/api/lagrowthmachine/list/inbox/webhooks` — Tool to list all inbox webhooks currently configured in your workspace. Use when you need to retrieve webhook IDs, names, and target URLs for webhook management or audit purposes.
- `POST https://api.mcp.ai/api/lagrowthmachine/list/members` — Tool to list all members (users) associated with your workspace. Use when you need to retrieve member information, especially memberId which is required for action-based endpoints like sending LinkedI
- `POST https://api.mcp.ai/api/lagrowthmachine/register/vector/visitor/webhook` — Tool to register Vector website visitors to a La Growth Machine audience. Use when receiving visitor events from Vector integration to automatically add identified contacts to the specified audience.
  - body: { event: string, contact: object, segment?: object, timestamp: string, audience_name: string }
- `POST https://api.mcp.ai/api/lagrowthmachine/remove/lead/from/audiences` — Tool to remove a lead from one or more specified audiences in La Growth Machine. Use when you need to unsubscribe or remove a lead from audience lists.
  - body: { crmId?: string, twitter?: string, audience: string[]|string, lastname?: string, proEmail?: string, firstname?: string, companyUrl?: string, persoEmail?: string, companyName?: string, linkedinUrl?: string }
- `POST https://api.mcp.ai/api/lagrowthmachine/search/lead` — Tool to search for a lead using various criteria. Use when you need to find a lead by email, LinkedIn URL, lead ID, or name combination. At least one of these must be provided: email, linkedinUrl, lea
  - body: { email?: string, leadId?: string, lastname?: string, firstname?: string, companyUrl?: string, companyName?: string, linkedinUrl?: string }

## Example prompts
- "What can I do in La Growth Machine?"
- "Show me a summary of my La Growth Machine account"

## More
- Page: https://mcp.ai/lagrowthmachine
- Agent spec (llms.txt): https://mcp.ai/lagrowthmachine/llms.txt
- Postman collection: https://mcp.ai/lagrowthmachine/postman.json
