feat: apply tool schema v17 metadata
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 22s

This commit is contained in:
jade
2026-08-12 15:46:57 +09:00
parent 97a56efddf
commit 017812cd29
45 changed files with 1554 additions and 50 deletions

View File

@@ -0,0 +1,24 @@
name: cmm_claim_search
display_name: 보험금 청구 상태 조회
version: 1.0.0
category_key: cmm
description:
function: 청구번호 또는 계약번호로 보험금 청구 상태와 심사 결과를 조회한다.
when_to_use: 사용자가 기존 보험금 청구의 진행 상태나 지급 결과를 확인하려는 경우 사용한다.
when_not_to_use: 보험금 청구를 새로 접수하거나 기존 청구 내용을 변경하려는 경우에는 사용하지 않는다.
io_limits: 청구번호 또는 계약번호 중 하나 이상이 필요하며 조회 결과만 반환한다.
display_description: 보험금 청구 상태와 심사 결과를 조회합니다.
example_queries: ["내 보험금 청구가 어디까지 진행됐는지 알려줘", "계약번호로 최근 청구 상태를 확인해줘", "청구 심사 결과가 나왔는지 조회해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
claimNo: {type: string, description: 조회할 보험금 청구번호}
contractNo: {type: string, description: 조회할 보험계약 번호}
additionalProperties: false
tags: [보험금, 청구조회]
legacy_interface_id: CLCNNB00001
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -0,0 +1,24 @@
name: cmm_memo_retriever
display_name: 의뢰서 목록 조회
version: 1.0.0
category_key: cmm
description:
function: 상태와 검색어 조건으로 의뢰서 목록을 조회한다.
when_to_use: 사용자가 등록된 의뢰서의 목록이나 처리 현황을 찾으려는 경우 사용한다.
when_not_to_use: 의뢰서를 신규 등록하거나 내용을 변경하려는 경우에는 사용하지 않는다.
io_limits: 선택 조건에 해당하는 의뢰서 요약 목록만 반환한다.
display_description: 조건에 맞는 의뢰서 목록을 조회합니다.
example_queries: ["처리 중인 의뢰서를 보여줘", "지난번 계약 관련 의뢰서를 찾아줘", "완료된 의뢰서 목록을 조회해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
memoStatus: {type: string, description: 조회할 의뢰서 처리 상태}
searchKeyword: {type: string, description: 의뢰서 제목 또는 내용 검색어}
additionalProperties: false
tags: [의뢰서, 목록조회]
legacy_interface_id: MEMO0000001
required_env_keys: []
owner_org: MCP_TOOL