From 84d4937e053ee6885aa5b433573f1e08cb46f39e Mon Sep 17 00:00:00 2001 From: jade Date: Tue, 14 Jul 2026 11:17:12 +0900 Subject: [PATCH] =?UTF-8?q?=EC=86=8C=EC=8A=A4=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .agents/mcp.json | 2 +- McpBridge.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.agents/mcp.json b/.agents/mcp.json index a08f1b0..a78269a 100644 --- a/.agents/mcp.json +++ b/.agents/mcp.json @@ -3,7 +3,7 @@ "axhub-gateway": { "command": "java", "args": [ - "C:/Users/jade/.gemini/antigravity/scratch/axhub-backend-main/McpBridge.java" + "C:/eGovFrameDev-4.3.1-64bit/workspace-egov/axhub-backend-main/McpBridge.java" ] } } diff --git a/McpBridge.java b/McpBridge.java index debdc5a..3bec94c 100644 --- a/McpBridge.java +++ b/McpBridge.java @@ -32,7 +32,7 @@ public class McpBridge { String id = extractId(line); try { HttpRequest req = HttpRequest.newBuilder() - .uri(URI.create("http://localhost:8081/mcp/api/v1/tools/list")) + .uri(URI.create("http://localhost:8281/mcp/api/v1/tools/list")) .GET() .build(); @@ -65,7 +65,7 @@ public class McpBridge { String id = extractId(line); try { HttpRequest req = HttpRequest.newBuilder() - .uri(URI.create("http://localhost:8081/mcp/api/v1/tools/call")) + .uri(URI.create("http://localhost:8281/mcp/api/v1/tools/call")) .header("Content-Type", "application/json") .header("X-Agent-Id", "Antigravity")