Skip to main content
Glama
horustechltd

horus-flow-mcp

by horustechltd

🦅 Horus Flow MCP 服务器

Smithery Badge Glama Quality Security: No Vulnerabilities Python 3.12+ License: MIT


🧠 为什么选择 Horus?AI 智能体的“神经系统”

在自主交易的世界里,没有实时订单流的 AI 智能体就像盲目飞行的飞行员。技术指标(RSI、MACD)只是过去的滞后回声Horus 是提供以下功能的神经系统

  • 本体感觉: 对市场“肌肉”(订单簿深度)的实时感知。

  • 反射: 对机构“痛点”(流动性崩溃)的次秒级检测。

  • 智能: 一个上下文感知的决策矩阵,将原始物理数据转化为可操作的信号。

“如果你想让你的 AI 智能体像巨鲸一样交易,你必须给它巨鲸的眼睛。Horus 就是那双眼睛。”


Related MCP server: crypto-quant-signal-mcp

🧪 Manus AI 审计:实时性能证明

Horus Flow MCP 已通过 Manus AI(一种自主执行智能体)的严格审计。结果证实,Horus 不仅仅是代码,它是高性能的现实。

审计亮点(BTCUSDT 实时测试):

  • 信号准确性: 成功检测到 STRONG_SELL_PRESSURE,置信度得分 0.85

  • 物理引擎验证: 确认 bid_ask_ratio0.156,证明了引擎读取稀薄限价订单簿和激进卖出的能力。

  • 零幻觉逻辑: MCP 服务器正确识别了“数据收集”模式下的交易对(例如 SOLUSDT),防止 AI 做出错误假设。

指标

审计结果

状态

响应时间

次毫秒级(本地)

✅ 已验证

数据完整性

币安 L2 订单簿同步

✅ 已验证

AI 置信度

高波动事件下 0.85+

✅ 已验证


💰 29 美元的套利:以午餐价格获取机构级情报

当你可以以极低的成本获得相同的微观结构情报时,为什么还要为机构终端支付数千美元?

特性

Horus Flow MCP

传统终端

月费

$29 (Pro 计划)

$150 - $2,000+

AI 集成

原生 MCP (即插即用)

复杂 API / 手动

数据源

机构级 L2 数据流

专有 / 封闭

决策逻辑

基于物理(引力)

滞后指标


🛑 停止预测 K 线。开始测量引力。

散户交易者使用滞后指标根据过去来猜测市场走势。Horus 使用 Level 2 订单簿物理学、Tick 不平衡和 5 秒流向增量来精确测量机构巨鲸现在正在做什么。

Horus 不会问“我们是否超买?”。它测量引力并告诉你:“巨鲸正在伪造买单,激进的吃单者正在撕裂卖单。流动性正在崩溃。立即撤离。”


⚡ 为什么 AI 智能体(Claude, Cursor)钟爱 Horus

如果你将 AI 智能体连接到基础技术指标数据流,它会被噪音干扰。 如果你为 AI 智能体提供 Horus,它将获得机构级的决策矩阵。

看看 Horus 在尝试流动性撤出 / 闪崩期间实时捕捉到的内容:

{
  "symbol": "BTCUSDT",
  "signal": "LIQUIDITY_EVENT",
  "confidence": 0.99,
  "market_state": "DISTRIBUTION",
  "risk": "EXTREME",
  "description": "Liquidity withdrawn under price. Aggressive taking.",
  "metrics": {
    "bid_ask_ratio": 7.934,
    "buy_sell_ratio": 0.393,
    "delta_5s": -83040.05,
    "whale_activity": true,
    "large_sell_count": 4,
    "delta_accel": 3.8,
    "wall_side": "BID",
    "wiseman_climate": {
      "market_mode": "CHOP",
      "health": "FRAGILE",
      "confidence": 0.85
    },
    "flags": [
      "GLOBAL_LIQUIDITY_EVENT",
      "SPOOFING_DETECTED(wall=BID)"
    ]
  },
  "timestamp": 1776107738.975
}

机构 Alpha:

  1. bid_ask_ratio: 7.934 & wall_side: BID:巨鲸在市场下方放置了巨大的伪造买单墙,以制造虚假支撑。

  2. buy_sell_ratio: 0.393:Horus 看穿了伪造行为(SPOOFING_DETECTED 标志)。它测量真实的吃单流,并发现激进的卖出正在摧毁订单簿。

  3. delta_accel: 3.8 & whale_activity: true:卖出动能加速了 3.8 倍,原生追踪到毫秒内 4 次主要的巨鲸抛售。

  4. wiseman_climate: FRAGILE:与 Horus SaaS 宏观大脑完美集成,在攻击前验证比特币的整体环境是否脆弱。

  5. 结论:凭借 0.99 的置信度,AI 引擎触发 LIQUIDITY_EVENT。它抢在随后的 1 分钟崩盘前执行。这就是机构级标准。


🏗️ 架构

graph TD
    %% Styling
    classDef crypto_stream fill:#F3BA2F,stroke:#000,color:#000,stroke-width:2px;
    classDef equity_stream fill:#000,stroke:#09b533,color:#09b533,stroke-width:2px;
    classDef compute fill:#1A1F36,stroke:#00D6FF,color:#fff,stroke-width:2px;
    classDef mcp fill:#632CA6,stroke:#fff,color:#fff,stroke-width:2px;
    classDef client fill:#FF3366,stroke:#fff,color:#fff,stroke-width:2px;

    %% Ingestion
    subgraph Data_Pipelines [Sub-Millisecond Websocket Ingestion]
        B[Binance WSS <br/> L1/L2 Book]:::crypto_stream
        A[Alpaca WSS <br/> SIP Equities]:::equity_stream
    end

    %% Engine
    subgraph Core_Engine [The Physics Engine]
        IC[Imbalance Calculator <br/> Bid/Ask Spread]:::compute
        FC[Flow Calculator <br/> Tape Deltas]:::compute
        Tkr[Prediction Tracker <br/> In-Memory Evaluator]:::compute
        BC[Behavioral Court <br/> Spoofing & Liquidity Rules]:::compute
    end

    %% Output
    subgraph Output_Layer [Data Shield & Delivery]
        MCP[AI Agent MCP Context <br/> Context-Aware Prompts]:::mcp
        API[FastAPI Client <br/> Safe Shielded Outputs]:::client
        Dash[Real-time Dashboard <br/> Live Edge Proof]:::client
    end

    B --> IC
    A --> IC
    B --> FC
    A --> FC
    
    IC --> BC
    FC --> BC
    
    BC --> Tkr
    Tkr -- "Validates 1M accuracy" --> BC
    
    BC --> MCP
    BC --> API
    BC --> Dash

🚀 交易机器人快速入门

开始使用 Horus 只需不到 60 秒。 ⚡ 立即测试: 下载我们的 Postman Collection 以直接从浏览器 ping API。

1. 启动核心引擎

# Install Dependencies
pip install mcp httpx

# Set your RapidAPI Key (Required for the server to fetch live data)
export RAPIDAPI_KEY="your_actual_rapidapi_key"

# Run the SSE Server
python horus_mcp_public.py --transport sse --port 8011

在你的本地机器人/智能体中,只需使用你的 RapidAPI 密钥或直接 API 密钥拉取任何加密货币或美股的实时流:

import requests

response = requests.get(
    "https://flow.horustek.pro/v1/flow/crypto/BTCUSDT", 
    headers={"X-API-Key": "your_secure_api_key"}
)

flow_data = response.json()

# The Zero-Human Decision Loop:
if flow_data.get('signal') in ['EMERGENCY_DUMP', 'BAILOUT', 'LIQUIDITY_EVENT']:
    print(f"⚠️ {flow_data['symbol']} Market gravity collapsing. Executing Bailout.")
    # execute_market_sell()

🌐 实时仪表板与开发者门户

Horus 开箱即用,配备了令人惊叹的玻璃拟态 WebSocket 仪表板和交互式 API 文档控制台。

👁️ 查看开发者门户: https://flow.horustek.pro

它具有一个本地边缘验证追踪器,严格测量由物理引擎生成的 1 分钟 K 线方向预测,并具有公开透明的胜率。让开发者在将其插入智能体之前看到逻辑。


为那些需要看清矩阵的人而打造,精度至上。 — HORUS INTELLIGENCE 👁️


mcp-name: io.github.horustechltd/horus-flow-mcp

Install Server
A
license - permissive license
A
quality
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
1Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables real-time options order flow analysis with pattern detection, institutional bias tracking, and monitoring of specific strike ranges and expirations. Provides comprehensive options trading data through integration with a high-performance Go-based data broker.
    10
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    MidasFlow Flow API - Cross-exchange order flow, whale detection, liquidations, funding rates, squeeze alerts for AI agents. Native MCP server.
    MIT

View all related MCP servers

Related MCP Connectors

  • Agent-native crypto market-data over MCP+REST: order flow, whales, liquidations, calibrated scores

  • AI crypto signals, smart money whale positions, live futures prices and indicators

  • Real-time & historical options analytics: GEX, dealer positioning, vol, VRP, 0DTE, CME futures

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/horustechltd/horus-flow-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server