From 3227091c58c06917e5cf52deab7ac601816f615e Mon Sep 17 00:00:00 2001 From: jungwoo choi Date: Sun, 15 Feb 2026 09:55:35 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20MCP=20=EC=84=9C=EB=B2=84=EC=97=90=20SVG?= =?UTF-8?q?=20=EC=95=84=EC=9D=B4=EC=BD=98=20=EC=97=94=EB=93=9C=ED=8F=AC?= =?UTF-8?q?=EC=9D=B8=ED=8A=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- mcp/src/index.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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 });