Skip to content
LangChain

ghl command for LangChain

io.github.drjerryrelth/ghl-command

GoHighLevel MCP for Claude: 250 tools, 51 modules, incl. the only programmatic GHL workflow builder

client:LangChain transport:stdio runtime:npm

Install ghl command in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "ghl-command": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@elitedcs/ghl-mcp"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

ghl command in other clients