Skip to content
LangChain

httpcat for LangChain

io.github.pipeworx-io/httpcat

HTTP Cat MCP — wraps http.cat (free, no auth)

client:LangChain transport:streamable-http

Install httpcat in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "httpcat": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/httpcat/mcp",
        }
})

tools = await client.get_tools()

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

httpcat in other clients