Skip to content
LangChain

copilot mcp for LangChain

io.github.apex-foundation/copilot-mcp

Web3 founder diligence: code audit, jurisdiction, fund matching, portfolio, scoring.

client:LangChain transport:stdio runtime:npm

Install copilot mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

copilot mcp in other clients