Files
dap-was-dapms/docs/contracts/tool-service-mcp/examples/bundle-v0.2/manifest-response.json
2026-08-05 15:54:25 +09:00

95 lines
2.9 KiB
JSON

{
"bundleId": "insurance-processing",
"revision": "sha256:9f2c4a17b83e5d06c1f9a2e7b45d8c30ff1a6b92e4c7d5083a1b6e9f2c4d7a850",
"tools": [
{
"name": "processing.contract.inquiry",
"title": "계약 조회",
"description": "계약번호로 계약의 기본 정보를 조회합니다. 사용자가 특정 계약의 상태, 보험료, 계약일을 물어볼 때 사용합니다. 테스트 전용이며 실제 고객 계약 데이터는 처리하지 않습니다.",
"inputSchema": {
"type": "object",
"properties": {
"contractNo": {
"type": "string",
"description": "조회할 계약번호입니다.",
"minLength": 1
}
},
"required": ["contractNo"],
"additionalProperties": false
},
"annotations": {
"title": "계약 조회",
"readOnlyHint": true,
"destructiveHint": false,
"idempotentHint": true,
"openWorldHint": false
},
"_meta": {
"version": "1.2.0",
"timeoutMillis": 3000,
"enabled": true
}
},
{
"name": "processing.payment.history",
"title": "수납 이력 조회",
"description": "계약번호로 수납 이력을 조회합니다. 사용자가 납입 내역이나 미납 여부를 물어볼 때 사용합니다.",
"inputSchema": {
"type": "object",
"properties": {
"contractNo": {
"type": "string",
"description": "조회할 계약번호입니다.",
"minLength": 1
},
"months": {
"type": "integer",
"description": "조회할 최근 개월 수입니다.",
"minimum": 1,
"maximum": 36
}
},
"required": ["contractNo"],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true,
"destructiveHint": false,
"idempotentHint": true,
"openWorldHint": false
},
"_meta": {
"version": "1.0.1",
"timeoutMillis": 5000,
"enabled": true
}
},
{
"name": "processing.notice.send",
"title": "안내 발송",
"description": "계약자에게 안내 메시지를 발송합니다. 사용자가 명시적으로 발송을 요청한 경우에만 사용합니다.",
"inputSchema": {
"type": "object",
"properties": {
"contractNo": { "type": "string", "minLength": 1 },
"template": { "type": "string", "enum": ["PAYMENT_DUE", "CONTRACT_EXPIRY"] }
},
"required": ["contractNo", "template"],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": false,
"destructiveHint": false,
"idempotentHint": false,
"openWorldHint": false
},
"_meta": {
"version": "0.9.0",
"timeoutMillis": 10000,
"enabled": false
}
}
]
}