File size: 7,365 Bytes
d491dc1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | """
HyperFlow MCP Server
Exposes HyperFlow ML tools to Hermes Agent and any MCP-compatible agent.
Transport: Streamable HTTP on port 8001
"""
from fastapi import FastAPI, HTTPException
from pydantic import BaseModel, Field
from typing import Optional, Any, Dict
import httpx
import os
mcp_app = FastAPI(
title="HyperFlow MCP Server",
description="MCP-compatible tool gateway for HyperFlow's ML operations",
version="1.0.0"
)
HYPERFLOW_BASE = os.getenv("HYPERFLOW_API_URL", "http://localhost:8000")
# ββ Tool schemas βββββββββββββββββββββββββββββββββββββββββββββββββ
class ForecastRequest(BaseModel):
store_id: int = Field(..., description="Dark store ID to forecast for")
horizon_hours: int = Field(24, ge=1, le=168, description="Forecast horizon in hours")
include_intervals: bool = Field(True, description="Include 90% confidence intervals")
class PSIRequest(BaseModel):
store_id: int = Field(..., description="Store ID to check drift for")
feature: Optional[str] = Field(None, description="Specific feature to check, or None for all")
class ProfitabilityRequest(BaseModel):
pop_density: float = Field(..., description="Population density (10k/km2)")
competitor_density: int = Field(..., description="Competitors within 2km radius")
dist_to_profitable: float = Field(..., description="Distance to nearest profitable store (km)")
initial_sku_count: float = Field(..., description="Launch SKU count (in thousands)")
avg_aov_in_zone: float = Field(..., description="Average order value in zone (INR/100)")
non_grocery_share: float = Field(..., ge=0.0, le=1.0, description="Non-grocery GMV share")
class ReserveRequest(BaseModel):
store_id: int
item_id: str
quantity: int = Field(..., ge=1)
idempotency_key: str = Field(..., description="UUID for atomic reservation")
# ββ MCP Tool endpoints βββββββββββββββββββββββββββββββββββββββββββ
@mcp_app.post("/tools/forecast_demand")
async def forecast_demand(req: ForecastRequest) -> Dict[str, Any]:
"""
MCP Tool: forecast_demand
Runs the Heteroscedastic Tobit censored demand forecast for a dark store.
Returns point forecast, 90% CI lower/upper bounds, and WMAPE confidence.
"""
async with httpx.AsyncClient() as client:
try:
resp = await client.post(
f"{HYPERFLOW_BASE}/api/v1/forecast/demand",
json=req.model_dump(),
timeout=30.0
)
resp.raise_for_status()
return resp.json()
except Exception as e:
raise HTTPException(status_code=500, detail=f"HyperFlow backend error: {str(e)}")
@mcp_app.get("/tools/get_psi_status")
async def get_psi_status(store_id: int, feature: Optional[str] = None) -> Dict[str, Any]:
"""
MCP Tool: get_psi_status
Returns current Population Stability Index for a store's feature distributions.
PSI < 0.10 = GREEN (stable), 0.10-0.20 = AMBER (monitor), > 0.20 = RED (retrain).
"""
async with httpx.AsyncClient() as client:
try:
params: Dict[str, Any] = {"store_id": store_id}
if feature:
params["feature"] = feature
resp = await client.get(
f"{HYPERFLOW_BASE}/api/v1/safeguards/psi",
params=params,
timeout=15.0
)
resp.raise_for_status()
return resp.json()
except Exception as e:
raise HTTPException(status_code=500, detail=f"HyperFlow backend error: {str(e)}")
@mcp_app.post("/tools/score_profitability")
async def score_profitability(req: ProfitabilityRequest) -> Dict[str, Any]:
"""
MCP Tool: score_profitability
Runs the Cox PH survival model to predict time-to-profitability for a
new dark store location. Returns median months to breakeven and
monthly survival probability curve (12-month horizon).
"""
async with httpx.AsyncClient() as client:
try:
resp = await client.post(
f"{HYPERFLOW_BASE}/api/v1/profitability/score",
json=req.model_dump(),
timeout=20.0
)
resp.raise_for_status()
return resp.json()
except Exception as e:
raise HTTPException(status_code=500, detail=f"HyperFlow backend error: {str(e)}")
@mcp_app.post("/tools/reserve_inventory")
async def reserve_inventory(req: ReserveRequest) -> Dict[str, Any]:
"""
MCP Tool: reserve_inventory
Atomically reserves inventory using Redis distributed lock.
Idempotent β same idempotency_key always returns same result.
"""
async with httpx.AsyncClient() as client:
try:
resp = await client.post(
f"{HYPERFLOW_BASE}/api/v1/inventory/reserve",
json=req.model_dump(),
timeout=10.0
)
resp.raise_for_status()
return resp.json()
except Exception as e:
raise HTTPException(status_code=500, detail=f"HyperFlow backend error: {str(e)}")
@mcp_app.get("/tools/get_store_context")
async def get_store_context(store_id: int) -> Dict[str, Any]:
"""
MCP Tool: get_store_context
Returns full operational context for a store: current inventory levels,
last forecast run, PSI status, profitability score, active reservations.
"""
async with httpx.AsyncClient() as client:
try:
resp = await client.get(
f"{HYPERFLOW_BASE}/api/v1/stores/{store_id}/context",
timeout=10.0
)
resp.raise_for_status()
return resp.json()
except Exception as e:
raise HTTPException(status_code=500, detail=f"HyperFlow backend error: {str(e)}")
@mcp_app.get("/tools/get_robustness_metrics")
async def get_robustness_metrics(store_id: int) -> Dict[str, Any]:
"""
MCP Tool: get_robustness_metrics
Returns ML robustness metrics: clipping rates per feature, PSI history,
model confidence bands, anomaly flags.
"""
async with httpx.AsyncClient() as client:
try:
resp = await client.get(
f"{HYPERFLOW_BASE}/api/v1/safeguards/robustness",
params={"store_id": store_id},
timeout=10.0
)
resp.raise_for_status()
return resp.json()
except Exception as e:
raise HTTPException(status_code=500, detail=f"HyperFlow backend error: {str(e)}")
# ββ MCP manifest βββββββββββββββββββββββββββββββββββββββββββββββββ
@mcp_app.get("/.well-known/mcp.json")
async def mcp_manifest() -> Dict[str, Any]:
"""MCP discovery manifest for Hermes and other MCP clients."""
return {
"name": "hyperflow-ml",
"version": "1.0.0",
"description": "HyperFlow dark store ML tools β demand forecasting, profitability scoring, PSI drift detection",
"transport": "http",
"tools_endpoint": "/tools",
"author": "HyperFlow",
}
|