Skip to content
LangChain

performance ai mcp for LangChain

io.github.csoai-org/performance-ai-mcp

Performance Ai MCP Server by MEOK AI Labs

client:LangChain transport:stdio runtime:pypi

Install performance ai mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "performance-ai-mcp": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["performance-ai-mcp"],
        }
})

tools = await client.get_tools()

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

performance ai mcp in other clients