Skip to content
LangChain

nippy for LangChain

host.nippy/nippy

Let Claude and ChatGPT publish real websites — iterate in previews, keep the good one.

client:LangChain transport:streamable-http

Install nippy in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "nippy": {
            "transport": "streamable_http",
            "url": "https://api.nippy.host/mcp",
        }
})

tools = await client.get_tools()

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

nippy in other clients