Skip to content
LangChain

microsoft ai roundup for LangChain

io.github.darrenjrobinson/microsoft-ai-roundup

Search Merill's Weekly Microsoft AI Roundup (msai.ms) archive — curated weekly Microsoft AI news

client:LangChain transport:stdio runtime:npm

Install microsoft ai roundup in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

microsoft ai roundup in other clients