Skip to content
LangChain

hiveclaw for LangChain

io.github.omiiyamu/hiveclaw

Connect AI assistants to HiveClaw — manage projects, talk to AI agents, and more.

client:LangChain transport:streamable-http runtime:npm

Install hiveclaw in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "hiveclaw": {
            "transport": "streamable_http",
            "url": "https://api.hiveclaw.ai/api/v1/mcp/remote",
        }
})

tools = await client.get_tools()

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

hiveclaw in other clients