Analyze-stroke / app.py
guohanghui's picture
Create app.py
458b1f6 verified
Raw
History Blame Contribute Delete
231 Bytes
from fastapi import FastAPI
import os
app = FastAPI()
@app.get("/")
async def root():
return {
"status": "ok",
"service": "Analyze-stroke",
"transport": os.environ.get("MCP_TRANSPORT", "stdio"),
}