Skip to content
LangChain

Perfonext Profiler MCP for LangChain

io.github.souvikdu/perfonext-profiler-mcp

MCP server for analyzing V8/Chrome CPU profiles with line-level tick attribution.

client:LangChain transport:stdio runtime:npm

Install Perfonext Profiler MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Perfonext Profiler MCP in other clients