File size: 226 Bytes
0e5bb97
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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"),
    }