Skip to content
LangChain

LLM Pulse for LangChain

io.github.llm-pulse/llmpulse-mcp

AI visibility analytics for brand mentions, citations, sentiment, and GEO reports

client:LangChain transport:streamable-http

Install LLM Pulse in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "llmpulse-mcp": {
            "transport": "streamable_http",
            "url": "https://api.llmpulse.ai/api/v1/mcp",
        }
})

tools = await client.get_tools()

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

LLM Pulse in other clients