File size: 231 Bytes
225e634
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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"),
    }