Analyze-stroke / app.py
ChaoqianO
init: Analyze-stroke MCP + security demo
225e634
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"),
}