feat: Add property-based register toggle for get_template_file_url

This commit is contained in:
jade
2026-07-08 15:32:31 +09:00
parent 5dee8074be
commit e8aabecc1a
2 changed files with 5 additions and 1 deletions

View File

@@ -17,7 +17,8 @@ public class TemplateUtilityService extends AbstractMcpToolService {
name = "get_template_file_url", name = "get_template_file_url",
description = "각종 양식(엑셀, PDF 등) 샘플 파일의 다운로드 URL을 제공합니다.", description = "각종 양식(엑셀, PDF 등) 샘플 파일의 다운로드 URL을 제공합니다.",
prompt = "고객 등록 엑셀 샘플 파일 다운로드 링크 줘.", prompt = "고객 등록 엑셀 샘플 파일 다운로드 링크 줘.",
mappingId = "COM_TMPL_01" mappingId = "COM_TMPL_01",
register = false
) )
public Map<String, Object> getTemplateFileUrl(TemplateDownloadReq data) { public Map<String, Object> getTemplateFileUrl(TemplateDownloadReq data) {
try { try {

View File

@@ -5,3 +5,6 @@ spring.profiles.active=local
# Suppress Kafka Connection Logs # Suppress Kafka Connection Logs
logging.level.org.apache.kafka=ERROR logging.level.org.apache.kafka=ERROR
# MCP Function Register overrides
mcp.functions.get_template_file_url.register=true