Skip to content
LangChain

Hackle for LangChain

io.github.hackle-io/hackle-mcp

Remote MCP server for the Hackle Admin API: experiments, feature flags, remote config, messaging.

client:LangChain transport:streamable-http

Install Hackle in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "hackle-mcp": {
            "transport": "streamable_http",
            "url": "https://mcp.hackle.io/mcp",
        }
})

tools = await client.get_tools()

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

Hackle in other clients