From 0c19271df951fb7fa77ca6313e16868ef255242a Mon Sep 17 00:00:00 2001 From: Eitan Yarmush Date: Tue, 22 Jul 2025 14:56:34 +0000 Subject: [PATCH] feat(fix): re-add health endpoint for streamable http Signed-off-by: Eitan Yarmush --- mcp/src/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mcp/src/index.ts b/mcp/src/index.ts index fc4728f..43416ef 100644 --- a/mcp/src/index.ts +++ b/mcp/src/index.ts @@ -529,6 +529,10 @@ async function main() { } } }); + + app.get("/health", (_: Request, res: Response) => { + res.status(200).send("OK"); + }); const PORT = process.env.PORT || 3001; webserver = app.listen(PORT, () => {