Files
dap-was-dapms/config/manifests/was-pro-manifest-sample-v1.json
janghw 2d730ea9c1
All checks were successful
Deploy Gateway / deploy (push) Successful in 2m33s
local-fixtures 추가 가상 tool server json파일로 대체
2026-09-08 13:56:13 +09:00

41 lines
1.7 KiB
JSON

{
"bundleId": "was-pro",
"revision": "local-pro-manifest-v1",
"tools": [
{
"name": "pro_individual_inquiry",
"endpoint": "/mcp/pro_individual_inquiry",
"title": "개인고객 상세조회",
"description": "개인고객 상세 정보를 가짜 데이터로 조회합니다.",
"inputSchema": {
"type": "object",
"properties": {
"customerId": { "type": "string", "pattern": "^[A-Za-z0-9]{1,20}$", "description": "고객 식별자" },
"name": { "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 }
},
{
"name": "pro_recruitment_data",
"endpoint": "/mcp/pro_recruitment_data",
"title": "모집수수료 공시 조회",
"description": "모집수수료 공시 정보를 가짜 데이터로 조회합니다.",
"inputSchema": {
"type": "object",
"properties": {
"companyCode": { "type": "string", "pattern": "^[0-9]{6}$", "description": "회사 코드" },
"year": { "type": "string", "pattern": "^[0-9]{4}$", "description": "조회 연도" }
},
"required": ["companyCode", "year"],
"additionalProperties": false
},
"annotations": { "title": "모집수수료 공시 조회", "readOnlyHint": true, "destructiveHint": false, "idempotentHint": true, "openWorldHint": false },
"_meta": { "version": "1.0.0", "timeoutMillis": 5000, "enabled": true }
}
]
}