FoamAgent / app.py
LeoYML
v1
0e5bb97
raw
history blame contribute delete
226 Bytes
from fastapi import FastAPI
import os
app = FastAPI()
@app.get("/")
async def root():
return {
"status": "ok",
"service": "Foam-Agent",
"transport": os.environ.get("MCP_TRANSPORT", "stdio"),
}