Fix invalid MCP tool names for Onnba3011 and SmsTool
Some checks failed
Deploy to OCIWP / deploy (push) Has been cancelled

This commit is contained in:
jade
2026-08-06 01:19:15 +09:00
parent 7287a96a01
commit 2d9e42b533
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import io.shinhanlife.dap.lib.annotation.ToolHint;
import io.shinhanlife.dap.mcc.biz.oth.dto.*;
public interface Onnba3011UseCase {
@McpTool(name = "oth.onnba3011.call", description = "Onnba3011 호출 툴")
@McpTool(name = "oth.oth.onnba3011.call", description = "Onnba3011 호출 툴")
@ToolHint(categoryKey = "oth")
Object execute(Onnba3011Request req);
}

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.send", title = "SMS 발송 툴", description = "SMS 발송 기능을 제공합니다.")
@McpTool(name = "sms.cmm.msg.send", title = "SMS 발송 툴", description = "SMS 발송 기능을 제공합니다.")
@ToolHint(register = false, categoryKey = "notification", mappingId = "SMS_SEND")
Object sendSms(SmsSendRequest req);
}