Skip to content
LangChain

copilot mcp for LangChain

io.github.vomeshatukuri/copilot-mcp

MCP server for web development with Khoros, Gainsight, and HigherLogic integrations.

client:LangChain transport:sse tools:1

Install copilot mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "copilot-mcp": {
            "transport": "streamable_http",
            "url": "https://copilot-mcp--0000001.gentlesea-14833e94.westus2.azurecontainerapps.io/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

copilot mcp in other clients