fix: add required fields to mock portal registry json

This commit is contained in:
윤희준
2026-08-15 08:52:43 +09:00
parent ed0958ef43
commit a86a03ca90

View File

@@ -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"
}
]
}
]