Skip to content
LangChain

StandardGraph for LangChain

io.github.swoopeagle/standardgraph

158,000+ K-12 education standards across 300 curriculum systems, cross-referenced via NLP.

client:LangChain transport:stdio runtime:pypi

Install StandardGraph in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "standardgraph": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["standardgraph"],
        }
})

tools = await client.get_tools()

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

StandardGraph in other clients