Update sms tool name and categoryKey to sms
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 1m46s

This commit is contained in:
jade
2026-08-06 01:20:39 +09:00
parent 2d9e42b533
commit d1f202aa9a

View File

@@ -5,7 +5,7 @@ import io.shinhanlife.dap.lib.annotation.ToolHint;
import io.shinhanlife.dap.mcc.biz.sms.dto.*;
public interface SmsToolUseCase {
@McpTool(name = "sms.cmm.msg.send", title = "SMS 발송 툴", description = "SMS 발송 기능을 제공합니다.")
@ToolHint(register = false, categoryKey = "notification", mappingId = "SMS_SEND")
@McpTool(name = "sms.sms.msg.send", title = "SMS 발송 툴", description = "SMS 발송 기능을 제공합니다.")
@ToolHint(register = false, categoryKey = "sms", mappingId = "SMS_SEND")
Object sendSms(SmsSendRequest req);
}