From a86a03ca90ab3dd25a3b22e25eba703d2bbcbca7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A4=ED=9D=AC=EC=A4=80?= Date: Sat, 15 Aug 2026 08:52:43 +0900 Subject: [PATCH] fix: add required fields to mock portal registry json --- deploy/portal-registry.json | 32 ++++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) diff --git a/deploy/portal-registry.json b/deploy/portal-registry.json index c62bdc1..454b852 100644 --- a/deploy/portal-registry.json +++ b/deploy/portal-registry.json @@ -3,25 +3,49 @@ { "routeKey": "cus", "toolServices": [ - { "status": "ACTIVE", "serviceDomain": "http://was-cus:8084" } + { + "status": "ACTIVE", + "serviceKey": "cus-default", + "serviceDomain": "http://was-cus:8084", + "manifestPath": "/tool-manifest", + "executeBasePath": "/mcp" + } ] }, { "routeKey": "sal", "toolServices": [ - { "status": "ACTIVE", "serviceDomain": "http://was-sal:8082" } + { + "status": "ACTIVE", + "serviceKey": "sal-default", + "serviceDomain": "http://was-sal:8082", + "manifestPath": "/tool-manifest", + "executeBasePath": "/mcp" + } ] }, { "routeKey": "pro", "toolServices": [ - { "status": "ACTIVE", "serviceDomain": "http://was-pro:8085" } + { + "status": "ACTIVE", + "serviceKey": "pro-default", + "serviceDomain": "http://was-pro:8085", + "manifestPath": "/tool-manifest", + "executeBasePath": "/mcp" + } ] }, { "routeKey": "sys", "toolServices": [ - { "status": "ACTIVE", "serviceDomain": "http://was-sys:8086" } + { + "status": "ACTIVE", + "serviceKey": "sys-default", + "serviceDomain": "http://was-sys:8086", + "manifestPath": "/tool-manifest", + "executeBasePath": "/mcp" + } ] } ]