Skip to content
LangChain

Copilot Studio MCP for LangChain

io.github.jgt87/copilot-studio-mcp

Build, test, ship and maintain Microsoft Copilot Studio agents from the editor

client:LangChain transport:stdio runtime:npm

Install Copilot Studio MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Copilot Studio MCP in other clients