Skip to content
LangChain

Education Mcp for LangChain

io.github.varvararatta/education_mcp

MCP server for Education

client:LangChain transport:streamable-http

Install Education Mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "education_mcp": {
            "transport": "streamable_http",
            "url": "https://education_mcp.mcpize.run/mcp",
        }
})

tools = await client.get_tools()

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

Education Mcp in other clients