feat: Add sms, email tool services and clean up McpTool annotation

This commit is contained in:
jade
2026-07-05 19:57:39 +09:00
parent 9ae513ca4a
commit bccc266123
17 changed files with 132 additions and 46 deletions

View File

@@ -13,8 +13,6 @@ public @interface McpTool {
@AliasFor(annotation = Component.class)
String value() default "";
String name();
String description();
String group() default "biz_core";
String group() default "COMMON";
String routingType() default "HTTP";
}

View File

@@ -107,9 +107,6 @@ public class ToolScaffolder {
@Service
@McpTool(
name = "%s",
description = "%s",
group = "%s",
routingType = "%s"
)
public class %sService extends AbstractMcpToolService {