MIToS / app.py
guohanghui's picture
Update app.py
e473be8 verified
Raw
History Blame Contribute Delete
222 Bytes
from fastapi import FastAPI
import os
app = FastAPI()
@app.get("/")
async def root():
return {
"status": "ok",
"service": "MIToS",
"transport": os.environ.get("MCP_TRANSPORT", "stdio"),
}