Skip to content
LangChain

GramClaw for LangChain

io.github.mar820/gramclaw

Manage Telegram outreach, campaigns, follow-ups, conversations, and pipelines from an MCP client.

client:LangChain transport:streamable-http

Install GramClaw in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "gramclaw": {
            "transport": "streamable_http",
            "url": "https://gramclaw.com/api/mcp?key={api_key}",
        }
})

tools = await client.get_tools()

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

GramClaw in other clients