refactor: remove unnecessary register=false from @GrowToolHint
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 4m33s

This commit is contained in:
jade
2026-08-13 16:54:08 +09:00
parent f1ca0d6df1
commit 46df842732
15 changed files with 15 additions and 15 deletions

View File

@@ -22,7 +22,7 @@ import io.shinhanlife.dap.mcc.biz.cmm.dto.ClaimSearchResponse;
public interface ClaimSearchUseCase {
@McpTool(name = "cmm_claim_search", title = "청구번호 또는 계약번호로 보험금 청구 상태를 조회한다.", description = "청구번호 또는 계약번호로 보험금 청구 상태를 조회한다.")
@GrowToolHint(register = false, categoryKey = "cmm", mappingId = "CLCNNB00001",
@GrowToolHint(categoryKey = "cmm", mappingId = "CLCNNB00001",
inputSchemaResource = "classpath:tool-schemas/cmm/claim-search-resource-input-schema.json",
outputSchemaResource = "classpath:tool-schemas/cmm/claim-search-resource-output-schema.json")
ClaimSearchResponse searchClaim(ClaimSearchRequest req);

View File

@@ -22,6 +22,6 @@ import io.shinhanlife.dap.mcc.biz.cmm.dto.MemoListRetrieverResponse;
public interface MemoListRetrieverUseCase {
@McpTool(name = "cmm_memo_retriever", title = "의뢰서 목록 조회", description = "의뢰서 목록을 조회하여 의뢰 정보를 반환합니다.")
@GrowToolHint(register = false, categoryKey = "cmm", mappingId = "MEMO0000001")
@GrowToolHint(categoryKey = "cmm", mappingId = "MEMO0000001")
MemoListRetrieverResponse retrieveMemoList(MemoListRetrieverRequest req);
}