Skip to content
LangChain

chuckle for LangChain

io.github.jpol34/chuckle

Look up meme template images by name or description, with disambiguation for ambiguous names.

client:LangChain transport:streamable-http

Install chuckle in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "chuckle": {
            "transport": "streamable_http",
            "url": "https://chuckle-server-production.up.railway.app/mcp",
        }
})

tools = await client.get_tools()

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

chuckle in other clients