Skip to content
LangChain

MakeItRun for LangChain

io.github.makeitrunai/makeitrun-mcp

Publish HTML from Claude or ChatGPT to a live URL with a QR code — no developer needed.

client:LangChain transport:streamable-http

Install MakeItRun in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

MakeItRun in other clients