Skip to content
LangChain

mcpulse for LangChain

com.getmcpulse/mcpulse

Analytics for MCP servers. Query your tool calls, first-call success, retries and schema cost.

client:LangChain transport:streamable-http

Install mcpulse in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcpulse": {
            "transport": "streamable_http",
            "url": "https://api.getmcpulse.com/mcp",
        }
})

tools = await client.get_tools()

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

mcpulse in other clients