Skip to content
LangChain

runitonai mcp for LangChain

io.github.structlabs-io/runitonai-mcp

Read-only MCP connector serving the Run It on AI book; index and Implementation Blocks are free.

client:LangChain transport:streamable-http tools:11

Install runitonai mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "runitonai-mcp": {
            "transport": "streamable_http",
            "url": "https://mcp.runitonai.com/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

runitonai mcp in other clients