local-fixtures 추가 가상 tool server json파일로 대체
All checks were successful
Deploy Gateway / deploy (push) Successful in 2m33s

This commit is contained in:
2026-09-08 13:56:13 +09:00
parent 6653030f03
commit 2d730ea9c1
17 changed files with 516 additions and 10 deletions

View File

@@ -0,0 +1,38 @@
{
"bundleId": "was-cus",
"revision": "local-cus-manifest-v1",
"tools": [
{
"name": "crm_activity_status",
"endpoint": "/mcp/crm_activity_status",
"title": "고객 활동 현황 조회",
"description": "고객 활동 현황을 가짜 데이터로 조회합니다.",
"inputSchema": {
"type": "object",
"properties": {
"customerId": { "type": "string", "description": "고객 식별자" },
"startDate": { "type": "string", "description": "조회 시작일(YYYY-MM-DD)" },
"endDate": { "type": "string", "description": "조회 종료일(YYYY-MM-DD)" }
},
"required": ["customerId"],
"additionalProperties": false
},
"annotations": { "title": "고객 활동 현황 조회", "readOnlyHint": true, "destructiveHint": false, "idempotentHint": true, "openWorldHint": false },
"_meta": { "version": "1.0.0", "timeoutMillis": 5000, "enabled": true }
},
{
"name": "crm_customer_detail",
"endpoint": "/mcp/crm_customer_detail",
"title": "고객 상세 정보 조회",
"description": "고객 상세 정보를 가짜 데이터로 조회합니다.",
"inputSchema": {
"type": "object",
"properties": { "customerId": { "type": "string", "description": "고객 식별자" } },
"required": ["customerId"],
"additionalProperties": false
},
"annotations": { "title": "고객 상세 정보 조회", "readOnlyHint": true, "destructiveHint": false, "idempotentHint": true, "openWorldHint": false },
"_meta": { "version": "1.0.0", "timeoutMillis": 5000, "enabled": true }
}
]
}