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