diff --git a/mcp/src/index.ts b/mcp/src/index.ts index 5a8419d..992578a 100644 --- a/mcp/src/index.ts +++ b/mcp/src/index.ts @@ -151,6 +151,18 @@ async function startHttp(server: ReturnType, port: number) }); }); + // Server icon + app.get("/icon.svg", (_req, res) => { + res.type("image/svg+xml").send(` + + + + + + +`); + }); + // Health check app.get("/health", (_req, res) => { res.json({ status: "ok", transport: "http", api_url: API_URL });