Skip to content
LangChain

Hatchable for LangChain

com.hatchable/hatchable

Build, deploy, and host full-stack web apps from any MCP client. DB, auth, storage, cron included.

client:LangChain transport:streamable-http

Install Hatchable in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "hatchable": {
            "transport": "streamable_http",
            "url": "https://hatchable.com/mcp",
        }
})

tools = await client.get_tools()

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

Hatchable in other clients