Skip to content
LangChain

nodrix for LangChain

live.nodrix/nodrix

Read live and historical IoT telemetry and actuate ESP32/Arduino hardware from a backend you host.

client:LangChain transport:streamable-http

Install nodrix in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "nodrix": {
            "transport": "streamable_http",
            "url": "https://{host}/v1/mcp/oauth",
        }
})

tools = await client.get_tools()

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

nodrix in other clients