Skip to content
LangChain

horus flow mcp for LangChain

io.github.horustechltd/horus-flow-mcp

Institutional crypto & equity orderflow intelligence for AI trading agents.

client:LangChain transport:stdio runtime:pypi

Install horus flow mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "horus-flow-mcp": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["horus-flow-mcp"],
        }
})

tools = await client.get_tools()

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

horus flow mcp in other clients