pest / app.py
guohanghui's picture
Create app.py
3d96fa8 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": "pest",
"transport": os.environ.get("MCP_TRANSPORT", "stdio"),
}