Skip to content
LangChain

Snapy.host for LangChain

host.snapy/snapy

Publish text or HTML to Snapy.host and get a shareable link that shows who opened it.

client:LangChain transport:stdio runtime:npm

Install Snapy.host in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "snapy": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "snapy-mcp"],
        }
})

tools = await client.get_tools()

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

Snapy.host in other clients