Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables interaction with La Growth Machine (LGM) workspace via MCP, providing 27 tools for managing members, identities, audiences, leads, campaigns, inbox webhooks, messaging, website visitors, and conversations.

README.md

La Growth Machine MCP Server

A Model Context Protocol (MCP) server that wraps the full La Growth Machine API, giving Claude (and any MCP-compatible client) direct access to your LGM workspace.

Features

27 tools covering every LGM API endpoint:

| Category | Tools | |----------|-------| | Members | list_members | | Identities | list_identities | | Audiences | list_audiences, create_audience_from_linkedin, get_audience_detail, get_audience_leads | | Leads | create_or_update_lead, search_lead, update_lead_status, remove_lead_from_audiences, get_lead_logs, get_lead_conversations | | Campaigns | get_campaigns, get_campaign, get_campaign_stats, get_campaign_leads_stats, get_campaign_messages | | Inbox Webhooks | list_inbox_webhooks, create_inbox_webhook, delete_inbox_webhook | | Inbox Messaging | send_linkedin_message, send_email_message, edit_conversation_note | | Website Visitors | rb2b_native_webhook, warmly_native_webhook, vector_native_webhook | | Conversations | get_conversation_messages |

Prerequisites

  • Node.js >= 18
  • A La Growth Machine account with API access (Business plan, currently at 100 EUR/month)
  • Your LGM API key from Settings > API

Installation

git clone https://github.com/GigRadar/lgm-mcp-server.git
cd lgm-mcp-server
npm install
npm run build

Claude Desktop Setup

Add the following to your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "lgm": {
      "command": "node",
      "args": ["/absolute/path/to/lgm-mcp-server/dist/index.js"],
      "env": {
        "LGM_API_KEY": "your-api-key-here"
      }
    }
  }
}

Replace /absolute/path/to/lgm-mcp-server with the actual path where you cloned the repo, and your-api-key-here with your LGM API key.

Then restart Claude Desktop to pick up the new server.

Claude Code Setup

claude mcp add lgm -- node /absolute/path/to/lgm-mcp-server/dist/index.js

Set the environment variable before launching:

export LGM_API_KEY=your-api-key-here

Usage Examples

Once connected, you can ask Claude things like:

  • "List all my LGM campaigns and their stats"
  • "Search for a lead by email john@example.com"
  • "Create a new lead in audience X with these details..."
  • "Send a LinkedIn message to https://linkedin.com/in/someone saying..."
  • "Show me the activity logs for lead ID abc123"
  • "Set up a webhook to receive inbox events at https://my-server.com/webhook"

Development

npm run build        # Compile TypeScript
npm run test         # Run unit tests
npm run test:e2e     # Run E2E tests (requires LGM_API_KEY)
npm run test:all     # Run all tests

API Reference

Base URL: https://apiv2.lagrowthmachine.com/flow

All requests are authenticated via apikey query parameter. Rate limit: 50 calls per 10 seconds.

Full API docs: Postman Documentation

Known Limitations

  • POST /inbox/email can only reply to existing email threads — it cannot initiate new email conversations. You must provide a replyToMessageId (from get_conversation_messages) or set replyInLastThread: true. Use either leadId or leadEmail, not both.

License

ISC

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Communication servers.