Skip to content
LangChain

brightspace for LangChain

io.github.jhostinaleck/brightspace

MCP server for D2L Brightspace. Multi-auth, 26+ tools, MCP Resources, Prompts, and web dashboard.

client:LangChain transport:stdio runtime:npm

Install brightspace in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

brightspace in other clients