Skip to content
LangChain

hatchbox for LangChain

com.pulsemcp/hatchbox

MCP server for Hatchbox Rails hosting — env var inspection, deploys, and process monitoring.

client:LangChain transport:stdio runtime:npm

Install hatchbox in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

hatchbox in other clients