refactor: migrate all tools in sal, pro, cus to @GrowToolHint and remove obsolete tests
All checks were successful
Deploy Tools / deploy (push) Successful in 2m25s

This commit is contained in:
jade
2026-08-18 22:09:39 +09:00
parent a50c425dba
commit 6646741665
171 changed files with 2295 additions and 4318 deletions

View File

@@ -7,54 +7,292 @@ import org.springaicommunity.mcp.annotation.McpTool;
public interface CrmToolUseCase { public interface CrmToolUseCase {
@McpTool(name = "crm_customer_search", title = "고객 통합 조회", description = "고객 통합 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_customer_search", title = "고객 통합 조회", description = "고객 통합 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "crm", mappingId = "DIRECT_CRM_CUSTOMER_SEARCH") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_CUSTOMER_SEARCH",
functionDescription = "고객 통합 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 통합 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 통합 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 통합 조회 해줘", "고객 통합 조회 결과를 알려줘", "고객 통합 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse searchCustomers(CrmToolRequest request); CrmToolResponse searchCustomers(CrmToolRequest request);
@McpTool(name = "crm_customer_detail", title = "고객 상세 정보 조회", description = "고객 상세 정보 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_customer_detail", title = "고객 상세 정보 조회", description = "고객 상세 정보 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "crm", mappingId = "DIRECT_CRM_CUSTOMER_DETAIL") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_CUSTOMER_DETAIL",
functionDescription = "고객 상세 정보 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 상세 정보 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 상세 정보 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 상세 정보 조회 해줘", "고객 상세 정보 조회 결과를 알려줘", "고객 상세 정보 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse getCustomerDetail(CrmToolRequest request); CrmToolResponse getCustomerDetail(CrmToolRequest request);
@McpTool(name = "crm_customer_create", title = "고객 정보 등록", description = "고객 정보 등록 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_customer_create", title = "고객 정보 등록", description = "고객 정보 등록 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "crm", mappingId = "DIRECT_CRM_CUSTOMER_CREATE") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_CUSTOMER_CREATE",
functionDescription = "고객 정보 등록 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 정보 등록 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 정보 등록 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 정보 등록 해줘", "고객 정보 등록 결과를 알려줘", "고객 정보 등록 기능을 실행해줘"},
destructive = false,
idempotent = false,
tags = {"crm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse createCustomer(CrmToolRequest request); CrmToolResponse createCustomer(CrmToolRequest request);
@McpTool(name = "crm_customer_update", title = "고객 정보 수정", description = "고객 정보 수정 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_customer_update", title = "고객 정보 수정", description = "고객 정보 수정 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "crm", mappingId = "DIRECT_CRM_CUSTOMER_UPDATE") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_CUSTOMER_UPDATE",
functionDescription = "고객 정보 수정 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 정보 수정 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 정보 수정 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 정보 수정 해줘", "고객 정보 수정 결과를 알려줘", "고객 정보 수정 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse updateCustomer(CrmToolRequest request); CrmToolResponse updateCustomer(CrmToolRequest request);
@McpTool(name = "crm_customer_duplicate_check", title = "고객 중복 여부 확인", description = "고객 중복 여부 확인 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_customer_duplicate_check", title = "고객 중복 여부 확인", description = "고객 중복 여부 확인 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "crm", mappingId = "DIRECT_CRM_CUSTOMER_DUPLICATE_CHECK") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_CUSTOMER_DUPLICATE_CHECK",
functionDescription = "고객 중복 여부 확인 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 중복 여부 확인 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 중복 여부 확인 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 중복 여부 확인 해줘", "고객 중복 여부 확인 결과를 알려줘", "고객 중복 여부 확인 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse checkDuplicateCustomer(CrmToolRequest request); CrmToolResponse checkDuplicateCustomer(CrmToolRequest request);
@McpTool(name = "crm_consultation_history", title = "고객 상담 이력 조회", description = "고객 상담 이력 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_consultation_history", title = "고객 상담 이력 조회", description = "고객 상담 이력 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "crm", mappingId = "DIRECT_CRM_CONSULTATION_HISTORY") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_CONSULTATION_HISTORY",
functionDescription = "고객 상담 이력 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 상담 이력 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 상담 이력 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 상담 이력 조회 해줘", "고객 상담 이력 조회 결과를 알려줘", "고객 상담 이력 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse getConsultationHistory(CrmToolRequest request); CrmToolResponse getConsultationHistory(CrmToolRequest request);
@McpTool(name = "crm_consultation_register", title = "고객 상담 이력 등록", description = "고객 상담 이력 등록 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_consultation_register", title = "고객 상담 이력 등록", description = "고객 상담 이력 등록 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "crm", mappingId = "DIRECT_CRM_CONSULTATION_REGISTER") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_CONSULTATION_REGISTER",
functionDescription = "고객 상담 이력 등록 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 상담 이력 등록 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 상담 이력 등록 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 상담 이력 등록 해줘", "고객 상담 이력 등록 결과를 알려줘", "고객 상담 이력 등록 기능을 실행해줘"},
destructive = false,
idempotent = false,
tags = {"crm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse registerConsultation(CrmToolRequest request); CrmToolResponse registerConsultation(CrmToolRequest request);
@McpTool(name = "crm_contact_history", title = "고객 접촉 이력 조회", description = "고객 접촉 이력 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_contact_history", title = "고객 접촉 이력 조회", description = "고객 접촉 이력 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "crm", mappingId = "DIRECT_CRM_CONTACT_HISTORY") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_CONTACT_HISTORY",
functionDescription = "고객 접촉 이력 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 접촉 이력 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 접촉 이력 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 접촉 이력 조회 해줘", "고객 접촉 이력 조회 결과를 알려줘", "고객 접촉 이력 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse getContactHistory(CrmToolRequest request); CrmToolResponse getContactHistory(CrmToolRequest request);
@McpTool(name = "crm_contact_register", title = "고객 접촉 이력 등록", description = "고객 접촉 이력 등록 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_contact_register", title = "고객 접촉 이력 등록", description = "고객 접촉 이력 등록 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "crm", mappingId = "DIRECT_CRM_CONTACT_REGISTER") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_CONTACT_REGISTER",
functionDescription = "고객 접촉 이력 등록 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 접촉 이력 등록 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 접촉 이력 등록 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 접촉 이력 등록 해줘", "고객 접촉 이력 등록 결과를 알려줘", "고객 접촉 이력 등록 기능을 실행해줘"},
destructive = false,
idempotent = false,
tags = {"crm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse registerContact(CrmToolRequest request); CrmToolResponse registerContact(CrmToolRequest request);
@McpTool(name = "crm_grade_detail", title = "고객 등급 조회", description = "고객 등급 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_grade_detail", title = "고객 등급 조회", description = "고객 등급 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "crm", mappingId = "DIRECT_CRM_GRADE_DETAIL") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_GRADE_DETAIL",
functionDescription = "고객 등급 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 등급 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 등급 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 등급 조회 해줘", "고객 등급 조회 결과를 알려줘", "고객 등급 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse getCustomerGrade(CrmToolRequest request); CrmToolResponse getCustomerGrade(CrmToolRequest request);
@McpTool(name = "crm_grade_change", title = "고객 등급 변경", description = "고객 등급 변경 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_grade_change", title = "고객 등급 변경", description = "고객 등급 변경 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "crm", mappingId = "DIRECT_CRM_GRADE_CHANGE") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_GRADE_CHANGE",
functionDescription = "고객 등급 변경 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 등급 변경 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 등급 변경 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 등급 변경 해줘", "고객 등급 변경 결과를 알려줘", "고객 등급 변경 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse changeCustomerGrade(CrmToolRequest request); CrmToolResponse changeCustomerGrade(CrmToolRequest request);
@McpTool(name = "crm_segment_detail", title = "고객 세그먼트 조회", description = "고객 세그먼트 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_segment_detail", title = "고객 세그먼트 조회", description = "고객 세그먼트 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "crm", mappingId = "DIRECT_CRM_SEGMENT_DETAIL") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_SEGMENT_DETAIL",
functionDescription = "고객 세그먼트 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 세그먼트 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 세그먼트 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 세그먼트 조회 해줘", "고객 세그먼트 조회 결과를 알려줘", "고객 세그먼트 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse getCustomerSegment(CrmToolRequest request); CrmToolResponse getCustomerSegment(CrmToolRequest request);
@McpTool(name = "crm_tag_manage", title = "고객 태그 관리", description = "고객 태그 관리 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_tag_manage", title = "고객 태그 관리", description = "고객 태그 관리 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "crm", mappingId = "DIRECT_CRM_TAG_MANAGE") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_TAG_MANAGE",
functionDescription = "고객 태그 관리 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 태그 관리 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 태그 관리 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 태그 관리 해줘", "고객 태그 관리 결과를 알려줘", "고객 태그 관리 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse manageCustomerTags(CrmToolRequest request); CrmToolResponse manageCustomerTags(CrmToolRequest request);
@McpTool(name = "crm_consent_detail", title = "고객 동의 정보 조회", description = "고객 동의 정보 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_consent_detail", title = "고객 동의 정보 조회", description = "고객 동의 정보 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "crm", mappingId = "DIRECT_CRM_CONSENT_DETAIL") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_CONSENT_DETAIL",
functionDescription = "고객 동의 정보 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 동의 정보 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 동의 정보 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 동의 정보 조회 해줘", "고객 동의 정보 조회 결과를 알려줘", "고객 동의 정보 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse getCustomerConsent(CrmToolRequest request); CrmToolResponse getCustomerConsent(CrmToolRequest request);
@McpTool(name = "crm_consent_change", title = "고객 동의 정보 변경", description = "고객 동의 정보 변경 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_consent_change", title = "고객 동의 정보 변경", description = "고객 동의 정보 변경 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "crm", mappingId = "DIRECT_CRM_CONSENT_CHANGE") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_CONSENT_CHANGE",
functionDescription = "고객 동의 정보 변경 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 동의 정보 변경 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 동의 정보 변경 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 동의 정보 변경 해줘", "고객 동의 정보 변경 결과를 알려줘", "고객 동의 정보 변경 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse changeCustomerConsent(CrmToolRequest request); CrmToolResponse changeCustomerConsent(CrmToolRequest request);
@McpTool(name = "crm_owner_assign", title = "고객 담당자 배정", description = "고객 담당자 배정 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_owner_assign", title = "고객 담당자 배정", description = "고객 담당자 배정 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "crm", mappingId = "DIRECT_CRM_OWNER_ASSIGN") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_OWNER_ASSIGN",
functionDescription = "고객 담당자 배정 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 담당자 배정 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 담당자 배정 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 담당자 배정 해줘", "고객 담당자 배정 결과를 알려줘", "고객 담당자 배정 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse assignCustomerOwner(CrmToolRequest request); CrmToolResponse assignCustomerOwner(CrmToolRequest request);
@McpTool(name = "crm_activity_status", title = "고객 활동 현황 조회", description = "고객 활동 현황 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "crm_activity_status", title = "고객 활동 현황 조회", description = "고객 활동 현황 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "crm", mappingId = "DIRECT_CRM_ACTIVITY_STATUS") @GrowToolHint(
requiresApproval = false,
categoryKey = "crm",
mappingId = "DIRECT_CRM_ACTIVITY_STATUS",
functionDescription = "고객 활동 현황 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객 활동 현황 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객 활동 현황 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 활동 현황 조회 해줘", "고객 활동 현황 조회 결과를 알려줘", "고객 활동 현황 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"crm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
CrmToolResponse getCustomerActivityStatus(CrmToolRequest request); CrmToolResponse getCustomerActivityStatus(CrmToolRequest request);
} }

View File

@@ -7,54 +7,292 @@ import org.springaicommunity.mcp.annotation.McpTool;
public interface VocToolUseCase { public interface VocToolUseCase {
@McpTool(name = "voc_register", title = "VOC 접수 등록", description = "VOC 접수 등록 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_register", title = "VOC 접수 등록", description = "VOC 접수 등록 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "voc", mappingId = "DIRECT_VOC_REGISTER") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_REGISTER",
functionDescription = "VOC 접수 등록 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 접수 등록 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 접수 등록 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 접수 등록 해줘", "VOC 접수 등록 결과를 알려줘", "VOC 접수 등록 기능을 실행해줘"},
destructive = false,
idempotent = false,
tags = {"voc", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse registerVoc(VocToolRequest request); VocToolResponse registerVoc(VocToolRequest request);
@McpTool(name = "voc_detail", title = "VOC 상세 조회", description = "VOC 상세 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_detail", title = "VOC 상세 조회", description = "VOC 상세 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "voc", mappingId = "DIRECT_VOC_DETAIL") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_DETAIL",
functionDescription = "VOC 상세 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 상세 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 상세 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 상세 조회 해줘", "VOC 상세 조회 결과를 알려줘", "VOC 상세 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse getVocDetail(VocToolRequest request); VocToolResponse getVocDetail(VocToolRequest request);
@McpTool(name = "voc_search", title = "VOC 목록 검색", description = "VOC 목록 검색 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_search", title = "VOC 목록 검색", description = "VOC 목록 검색 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "voc", mappingId = "DIRECT_VOC_SEARCH") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_SEARCH",
functionDescription = "VOC 목록 검색 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 목록 검색 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 목록 검색 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 목록 검색 해줘", "VOC 목록 검색 결과를 알려줘", "VOC 목록 검색 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse searchVocs(VocToolRequest request); VocToolResponse searchVocs(VocToolRequest request);
@McpTool(name = "voc_update", title = "VOC 내용 수정", description = "VOC 내용 수정 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_update", title = "VOC 내용 수정", description = "VOC 내용 수정 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "voc", mappingId = "DIRECT_VOC_UPDATE") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_UPDATE",
functionDescription = "VOC 내용 수정 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 내용 수정 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 내용 수정 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 내용 수정 해줘", "VOC 내용 수정 결과를 알려줘", "VOC 내용 수정 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse updateVoc(VocToolRequest request); VocToolResponse updateVoc(VocToolRequest request);
@McpTool(name = "voc_assign", title = "VOC 담당자 배정", description = "VOC 담당자 배정 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_assign", title = "VOC 담당자 배정", description = "VOC 담당자 배정 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "voc", mappingId = "DIRECT_VOC_ASSIGN") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_ASSIGN",
functionDescription = "VOC 담당자 배정 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 담당자 배정 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 담당자 배정 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 담당자 배정 해줘", "VOC 담당자 배정 결과를 알려줘", "VOC 담당자 배정 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse assignVocOwner(VocToolRequest request); VocToolResponse assignVocOwner(VocToolRequest request);
@McpTool(name = "voc_change_status", title = "VOC 처리 상태 변경", description = "VOC 처리 상태 변경 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_change_status", title = "VOC 처리 상태 변경", description = "VOC 처리 상태 변경 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "voc", mappingId = "DIRECT_VOC_CHANGE_STATUS") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_CHANGE_STATUS",
functionDescription = "VOC 처리 상태 변경 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 처리 상태 변경 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 처리 상태 변경 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 처리 상태 변경 해줘", "VOC 처리 상태 변경 결과를 알려줘", "VOC 처리 상태 변경 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse changeVocStatus(VocToolRequest request); VocToolResponse changeVocStatus(VocToolRequest request);
@McpTool(name = "voc_register_result", title = "VOC 처리 결과 등록", description = "VOC 처리 결과 등록 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_register_result", title = "VOC 처리 결과 등록", description = "VOC 처리 결과 등록 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "voc", mappingId = "DIRECT_VOC_REGISTER_RESULT") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_REGISTER_RESULT",
functionDescription = "VOC 처리 결과 등록 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 처리 결과 등록 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 처리 결과 등록 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 처리 결과 등록 해줘", "VOC 처리 결과 등록 결과를 알려줘", "VOC 처리 결과 등록 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse registerVocResult(VocToolRequest request); VocToolResponse registerVocResult(VocToolRequest request);
@McpTool(name = "voc_send_reply", title = "VOC 답변 발송", description = "VOC 답변 발송 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_send_reply", title = "VOC 답변 발송", description = "VOC 답변 발송 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "voc", mappingId = "DIRECT_VOC_SEND_REPLY") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_SEND_REPLY",
functionDescription = "VOC 답변 발송 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 답변 발송 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 답변 발송 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 답변 발송 해줘", "VOC 답변 발송 결과를 알려줘", "VOC 답변 발송 기능을 실행해줘"},
destructive = false,
idempotent = false,
tags = {"voc", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse sendVocReply(VocToolRequest request); VocToolResponse sendVocReply(VocToolRequest request);
@McpTool(name = "voc_transfer", title = "VOC 이관 처리", description = "VOC 이관 처리 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_transfer", title = "VOC 이관 처리", description = "VOC 이관 처리 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "voc", mappingId = "DIRECT_VOC_TRANSFER") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_TRANSFER",
functionDescription = "VOC 이관 처리 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 이관 처리 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 이관 처리 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 이관 처리 해줘", "VOC 이관 처리 결과를 알려줘", "VOC 이관 처리 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse transferVoc(VocToolRequest request); VocToolResponse transferVoc(VocToolRequest request);
@McpTool(name = "voc_set_priority", title = "VOC 우선순위 설정", description = "VOC 우선순위 설정 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_set_priority", title = "VOC 우선순위 설정", description = "VOC 우선순위 설정 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "voc", mappingId = "DIRECT_VOC_SET_PRIORITY") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_SET_PRIORITY",
functionDescription = "VOC 우선순위 설정 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 우선순위 설정 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 우선순위 설정 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 우선순위 설정 해줘", "VOC 우선순위 설정 결과를 알려줘", "VOC 우선순위 설정 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse setVocPriority(VocToolRequest request); VocToolResponse setVocPriority(VocToolRequest request);
@McpTool(name = "voc_classify_type", title = "VOC 유형 분류", description = "VOC 유형 분류 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_classify_type", title = "VOC 유형 분류", description = "VOC 유형 분류 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "voc", mappingId = "DIRECT_VOC_CLASSIFY_TYPE") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_CLASSIFY_TYPE",
functionDescription = "VOC 유형 분류 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 유형 분류 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 유형 분류 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 유형 분류 해줘", "VOC 유형 분류 결과를 알려줘", "VOC 유형 분류 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse classifyVocType(VocToolRequest request); VocToolResponse classifyVocType(VocToolRequest request);
@McpTool(name = "voc_attachments", title = "VOC 첨부파일 조회", description = "VOC 첨부파일 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_attachments", title = "VOC 첨부파일 조회", description = "VOC 첨부파일 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "voc", mappingId = "DIRECT_VOC_ATTACHMENTS") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_ATTACHMENTS",
functionDescription = "VOC 첨부파일 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 첨부파일 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 첨부파일 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 첨부파일 조회 해줘", "VOC 첨부파일 조회 결과를 알려줘", "VOC 첨부파일 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse getVocAttachments(VocToolRequest request); VocToolResponse getVocAttachments(VocToolRequest request);
@McpTool(name = "voc_customer_history", title = "고객별 VOC 이력 조회", description = "고객별 VOC 이력 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_customer_history", title = "고객별 VOC 이력 조회", description = "고객별 VOC 이력 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "voc", mappingId = "DIRECT_VOC_CUSTOMER_HISTORY") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_CUSTOMER_HISTORY",
functionDescription = "고객별 VOC 이력 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 고객별 VOC 이력 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "고객별 VOC 이력 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객별 VOC 이력 조회 해줘", "고객별 VOC 이력 조회 결과를 알려줘", "고객별 VOC 이력 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse getCustomerVocHistory(VocToolRequest request); VocToolResponse getCustomerVocHistory(VocToolRequest request);
@McpTool(name = "voc_detect_duplicate", title = "중복 VOC 탐지", description = "중복 VOC 탐지 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_detect_duplicate", title = "중복 VOC 탐지", description = "중복 VOC 탐지 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "voc", mappingId = "DIRECT_VOC_DETECT_DUPLICATE") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_DETECT_DUPLICATE",
functionDescription = "중복 VOC 탐지 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 중복 VOC 탐지 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "중복 VOC 탐지 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"중복 VOC 탐지 해줘", "중복 VOC 탐지 결과를 알려줘", "중복 VOC 탐지 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse detectDuplicateVoc(VocToolRequest request); VocToolResponse detectDuplicateVoc(VocToolRequest request);
@McpTool(name = "voc_urgent_list", title = "긴급 VOC 목록 조회", description = "긴급 VOC 목록 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_urgent_list", title = "긴급 VOC 목록 조회", description = "긴급 VOC 목록 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "voc", mappingId = "DIRECT_VOC_URGENT_LIST") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_URGENT_LIST",
functionDescription = "긴급 VOC 목록 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 긴급 VOC 목록 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "긴급 VOC 목록 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"긴급 VOC 목록 조회 해줘", "긴급 VOC 목록 조회 결과를 알려줘", "긴급 VOC 목록 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse getUrgentVocs(VocToolRequest request); VocToolResponse getUrgentVocs(VocToolRequest request);
@McpTool(name = "voc_extend_due_date", title = "VOC 처리 기한 연장", description = "VOC 처리 기한 연장 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_extend_due_date", title = "VOC 처리 기한 연장", description = "VOC 처리 기한 연장 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "voc", mappingId = "DIRECT_VOC_EXTEND_DUE_DATE") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_EXTEND_DUE_DATE",
functionDescription = "VOC 처리 기한 연장 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 처리 기한 연장 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 처리 기한 연장 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 처리 기한 연장 해줘", "VOC 처리 기한 연장 결과를 알려줘", "VOC 처리 기한 연장 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse extendVocDueDate(VocToolRequest request); VocToolResponse extendVocDueDate(VocToolRequest request);
@McpTool(name = "voc_statistics", title = "VOC 통계 조회", description = "VOC 통계 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "voc_statistics", title = "VOC 통계 조회", description = "VOC 통계 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "voc", mappingId = "DIRECT_VOC_STATISTICS") @GrowToolHint(
requiresApproval = false,
categoryKey = "voc",
mappingId = "DIRECT_VOC_STATISTICS",
functionDescription = "VOC 통계 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 VOC 통계 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "VOC 통계 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"VOC 통계 조회 해줘", "VOC 통계 조회 결과를 알려줘", "VOC 통계 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"voc", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
VocToolResponse getVocStatistics(VocToolRequest request); VocToolResponse getVocStatistics(VocToolRequest request);
} }

View File

@@ -7,54 +7,292 @@ import org.springaicommunity.mcp.annotation.McpTool;
public interface WcmToolUseCase { public interface WcmToolUseCase {
@McpTool(name = "wcm_content_list", title = "웹 콘텐츠 목록 조회", description = "웹 콘텐츠 목록 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_list", title = "웹 콘텐츠 목록 조회", description = "웹 콘텐츠 목록 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_LIST") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_LIST",
functionDescription = "웹 콘텐츠 목록 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 목록 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 목록 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 목록 조회 해줘", "웹 콘텐츠 목록 조회 결과를 알려줘", "웹 콘텐츠 목록 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse getContentList(WcmToolRequest request); WcmToolResponse getContentList(WcmToolRequest request);
@McpTool(name = "wcm_content_detail", title = "웹 콘텐츠 상세 조회", description = "웹 콘텐츠 상세 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_detail", title = "웹 콘텐츠 상세 조회", description = "웹 콘텐츠 상세 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_DETAIL") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_DETAIL",
functionDescription = "웹 콘텐츠 상세 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 상세 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 상세 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 상세 조회 해줘", "웹 콘텐츠 상세 조회 결과를 알려줘", "웹 콘텐츠 상세 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse getContentDetail(WcmToolRequest request); WcmToolResponse getContentDetail(WcmToolRequest request);
@McpTool(name = "wcm_content_create", title = "웹 콘텐츠 등록", description = "웹 콘텐츠 등록 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_create", title = "웹 콘텐츠 등록", description = "웹 콘텐츠 등록 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_CREATE") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_CREATE",
functionDescription = "웹 콘텐츠 등록 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 등록 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 등록 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 등록 해줘", "웹 콘텐츠 등록 결과를 알려줘", "웹 콘텐츠 등록 기능을 실행해줘"},
destructive = false,
idempotent = false,
tags = {"wcm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse createContent(WcmToolRequest request); WcmToolResponse createContent(WcmToolRequest request);
@McpTool(name = "wcm_content_update", title = "웹 콘텐츠 수정", description = "웹 콘텐츠 수정 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_update", title = "웹 콘텐츠 수정", description = "웹 콘텐츠 수정 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_UPDATE") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_UPDATE",
functionDescription = "웹 콘텐츠 수정 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 수정 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 수정 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 수정 해줘", "웹 콘텐츠 수정 결과를 알려줘", "웹 콘텐츠 수정 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse updateContent(WcmToolRequest request); WcmToolResponse updateContent(WcmToolRequest request);
@McpTool(name = "wcm_content_delete", title = "웹 콘텐츠 삭제", description = "웹 콘텐츠 삭제 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_delete", title = "웹 콘텐츠 삭제", description = "웹 콘텐츠 삭제 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_DELETE") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_DELETE",
functionDescription = "웹 콘텐츠 삭제 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 삭제 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 삭제 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 삭제 해줘", "웹 콘텐츠 삭제 결과를 알려줘", "웹 콘텐츠 삭제 기능을 실행해줘"},
destructive = true,
idempotent = true,
tags = {"wcm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse deleteContent(WcmToolRequest request); WcmToolResponse deleteContent(WcmToolRequest request);
@McpTool(name = "wcm_content_copy", title = "웹 콘텐츠 복사", description = "웹 콘텐츠 복사 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_copy", title = "웹 콘텐츠 복사", description = "웹 콘텐츠 복사 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_COPY") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_COPY",
functionDescription = "웹 콘텐츠 복사 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 복사 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 복사 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 복사 해줘", "웹 콘텐츠 복사 결과를 알려줘", "웹 콘텐츠 복사 기능을 실행해줘"},
destructive = false,
idempotent = false,
tags = {"wcm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse copyContent(WcmToolRequest request); WcmToolResponse copyContent(WcmToolRequest request);
@McpTool(name = "wcm_content_preview", title = "웹 콘텐츠 미리보기", description = "웹 콘텐츠 미리보기 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_preview", title = "웹 콘텐츠 미리보기", description = "웹 콘텐츠 미리보기 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_PREVIEW") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_PREVIEW",
functionDescription = "웹 콘텐츠 미리보기 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 미리보기 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 미리보기 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 미리보기 해줘", "웹 콘텐츠 미리보기 결과를 알려줘", "웹 콘텐츠 미리보기 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse previewContent(WcmToolRequest request); WcmToolResponse previewContent(WcmToolRequest request);
@McpTool(name = "wcm_content_publish", title = "웹 콘텐츠 게시", description = "웹 콘텐츠 게시 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_publish", title = "웹 콘텐츠 게시", description = "웹 콘텐츠 게시 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_PUBLISH") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_PUBLISH",
functionDescription = "웹 콘텐츠 게시 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 게시 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 게시 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 게시 해줘", "웹 콘텐츠 게시 결과를 알려줘", "웹 콘텐츠 게시 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse publishContent(WcmToolRequest request); WcmToolResponse publishContent(WcmToolRequest request);
@McpTool(name = "wcm_content_unpublish", title = "웹 콘텐츠 게시 중지", description = "웹 콘텐츠 게시 중지 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_unpublish", title = "웹 콘텐츠 게시 중지", description = "웹 콘텐츠 게시 중지 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_UNPUBLISH") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_UNPUBLISH",
functionDescription = "웹 콘텐츠 게시 중지 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 게시 중지 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 게시 중지 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 게시 중지 해줘", "웹 콘텐츠 게시 중지 결과를 알려줘", "웹 콘텐츠 게시 중지 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse unpublishContent(WcmToolRequest request); WcmToolResponse unpublishContent(WcmToolRequest request);
@McpTool(name = "wcm_content_schedule_publish", title = "웹 콘텐츠 예약 게시", description = "웹 콘텐츠 예약 게시 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_schedule_publish", title = "웹 콘텐츠 예약 게시", description = "웹 콘텐츠 예약 게시 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_SCHEDULE_PUBLISH") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_SCHEDULE_PUBLISH",
functionDescription = "웹 콘텐츠 예약 게시 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 예약 게시 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 예약 게시 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 예약 게시 해줘", "웹 콘텐츠 예약 게시 결과를 알려줘", "웹 콘텐츠 예약 게시 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse scheduleContentPublish(WcmToolRequest request); WcmToolResponse scheduleContentPublish(WcmToolRequest request);
@McpTool(name = "wcm_content_request_approval", title = "웹 콘텐츠 승인 요청", description = "웹 콘텐츠 승인 요청 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_request_approval", title = "웹 콘텐츠 승인 요청", description = "웹 콘텐츠 승인 요청 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_REQUEST_APPROVAL") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_REQUEST_APPROVAL",
functionDescription = "웹 콘텐츠 승인 요청 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 승인 요청 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 승인 요청 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 승인 요청 해줘", "웹 콘텐츠 승인 요청 결과를 알려줘", "웹 콘텐츠 승인 요청 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse requestContentApproval(WcmToolRequest request); WcmToolResponse requestContentApproval(WcmToolRequest request);
@McpTool(name = "wcm_content_review_approval", title = "웹 콘텐츠 승인·반려", description = "웹 콘텐츠 승인·반려 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_review_approval", title = "웹 콘텐츠 승인·반려", description = "웹 콘텐츠 승인·반려 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_REVIEW_APPROVAL") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_REVIEW_APPROVAL",
functionDescription = "웹 콘텐츠 승인·반려 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 승인·반려 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 승인·반려 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 승인·반려 해줘", "웹 콘텐츠 승인·반려 결과를 알려줘", "웹 콘텐츠 승인·반려 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse reviewContentApproval(WcmToolRequest request); WcmToolResponse reviewContentApproval(WcmToolRequest request);
@McpTool(name = "wcm_content_version_history", title = "웹 콘텐츠 버전 이력 조회", description = "웹 콘텐츠 버전 이력 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_version_history", title = "웹 콘텐츠 버전 이력 조회", description = "웹 콘텐츠 버전 이력 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_VERSION_HISTORY") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_VERSION_HISTORY",
functionDescription = "웹 콘텐츠 버전 이력 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 버전 이력 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 버전 이력 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 버전 이력 조회 해줘", "웹 콘텐츠 버전 이력 조회 결과를 알려줘", "웹 콘텐츠 버전 이력 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse getContentVersionHistory(WcmToolRequest request); WcmToolResponse getContentVersionHistory(WcmToolRequest request);
@McpTool(name = "wcm_content_restore_version", title = "웹 콘텐츠 이전 버전 복원", description = "웹 콘텐츠 이전 버전 복원 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_content_restore_version", title = "웹 콘텐츠 이전 버전 복원", description = "웹 콘텐츠 이전 버전 복원 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "wcm", mappingId = "DIRECT_WCM_CONTENT_RESTORE_VERSION") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_CONTENT_RESTORE_VERSION",
functionDescription = "웹 콘텐츠 이전 버전 복원 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 웹 콘텐츠 이전 버전 복원 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "웹 콘텐츠 이전 버전 복원 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"웹 콘텐츠 이전 버전 복원 해줘", "웹 콘텐츠 이전 버전 복원 결과를 알려줘", "웹 콘텐츠 이전 버전 복원 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse restoreContentVersion(WcmToolRequest request); WcmToolResponse restoreContentVersion(WcmToolRequest request);
@McpTool(name = "wcm_metadata_detail", title = "콘텐츠 메타데이터 조회", description = "콘텐츠 메타데이터 조회 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_metadata_detail", title = "콘텐츠 메타데이터 조회", description = "콘텐츠 메타데이터 조회 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "wcm", mappingId = "DIRECT_WCM_METADATA_DETAIL") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_METADATA_DETAIL",
functionDescription = "콘텐츠 메타데이터 조회 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 콘텐츠 메타데이터 조회 기능이 필요할 때 사용합니다.",
whenNotToUse = "정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "콘텐츠 메타데이터 조회 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"콘텐츠 메타데이터 조회 해줘", "콘텐츠 메타데이터 조회 결과를 알려줘", "콘텐츠 메타데이터 조회 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse getContentMetadata(WcmToolRequest request); WcmToolResponse getContentMetadata(WcmToolRequest request);
@McpTool(name = "wcm_metadata_upsert", title = "콘텐츠 메타데이터 등록·수정", description = "콘텐츠 메타데이터 등록·수정 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_metadata_upsert", title = "콘텐츠 메타데이터 등록·수정", description = "콘텐츠 메타데이터 등록·수정 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "wcm", mappingId = "DIRECT_WCM_METADATA_UPSERT") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_METADATA_UPSERT",
functionDescription = "콘텐츠 메타데이터 등록·수정 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 콘텐츠 메타데이터 등록·수정 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "콘텐츠 메타데이터 등록·수정 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"콘텐츠 메타데이터 등록·수정 해줘", "콘텐츠 메타데이터 등록·수정 결과를 알려줘", "콘텐츠 메타데이터 등록·수정 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse upsertContentMetadata(WcmToolRequest request); WcmToolResponse upsertContentMetadata(WcmToolRequest request);
@McpTool(name = "wcm_taxonomy_manage", title = "콘텐츠 카테고리·태그 관리", description = "콘텐츠 카테고리·태그 관리 기능을 안전한 모의 데이터로 제공합니다.") @McpTool(name = "wcm_taxonomy_manage", title = "콘텐츠 카테고리·태그 관리", description = "콘텐츠 카테고리·태그 관리 기능을 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = true, categoryKey = "wcm", mappingId = "DIRECT_WCM_TAXONOMY_MANAGE") @GrowToolHint(
requiresApproval = false,
categoryKey = "wcm",
mappingId = "DIRECT_WCM_TAXONOMY_MANAGE",
functionDescription = "콘텐츠 카테고리·태그 관리 기능을 수행합니다.",
whenToUse = "고객채널 업무에서 콘텐츠 카테고리·태그 관리 기능이 필요할 때 사용합니다.",
whenNotToUse = "필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.",
ioLimits = "입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.",
displayDescription = "콘텐츠 카테고리·태그 관리 기능을 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"콘텐츠 카테고리·태그 관리 해줘", "콘텐츠 카테고리·태그 관리 결과를 알려줘", "콘텐츠 카테고리·태그 관리 기능을 실행해줘"},
destructive = false,
idempotent = true,
tags = {"wcm", "고객채널", "처리", "mock"},
ownerOrg = "MCP_TOOL"
)
WcmToolResponse manageContentTaxonomy(WcmToolRequest request); WcmToolResponse manageContentTaxonomy(WcmToolRequest request);
} }

View File

@@ -1,30 +0,0 @@
name: crm_activity_status
display_name: 고객 활동 현황 조회
version: 1.0.0
category_key: crm
description:
function: 고객 활동 현황 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 활동 현황 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 활동 현황 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 활동 현황 조회 해줘", "고객 활동 현황 조회 결과를 알려줘", "고객 활동 현황 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_consent_change
display_name: 고객 동의 정보 변경
version: 1.0.0
category_key: crm
description:
function: 고객 동의 정보 변경 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 동의 정보 변경 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 동의 정보 변경 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 동의 정보 변경 해줘", "고객 동의 정보 변경 결과를 알려줘", "고객 동의 정보 변경 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_consent_detail
display_name: 고객 동의 정보 조회
version: 1.0.0
category_key: crm
description:
function: 고객 동의 정보 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 동의 정보 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 동의 정보 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 동의 정보 조회 해줘", "고객 동의 정보 조회 결과를 알려줘", "고객 동의 정보 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_consultation_history
display_name: 고객 상담 이력 조회
version: 1.0.0
category_key: crm
description:
function: 고객 상담 이력 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 상담 이력 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 상담 이력 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 상담 이력 조회 해줘", "고객 상담 이력 조회 결과를 알려줘", "고객 상담 이력 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_consultation_register
display_name: 고객 상담 이력 등록
version: 1.0.0
category_key: crm
description:
function: 고객 상담 이력 등록 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 상담 이력 등록 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 상담 이력 등록 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 상담 이력 등록 해줘", "고객 상담 이력 등록 결과를 알려줘", "고객 상담 이력 등록 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: false
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_contact_history
display_name: 고객 접촉 이력 조회
version: 1.0.0
category_key: crm
description:
function: 고객 접촉 이력 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 접촉 이력 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 접촉 이력 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 접촉 이력 조회 해줘", "고객 접촉 이력 조회 결과를 알려줘", "고객 접촉 이력 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_contact_register
display_name: 고객 접촉 이력 등록
version: 1.0.0
category_key: crm
description:
function: 고객 접촉 이력 등록 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 접촉 이력 등록 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 접촉 이력 등록 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 접촉 이력 등록 해줘", "고객 접촉 이력 등록 결과를 알려줘", "고객 접촉 이력 등록 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: false
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_customer_create
display_name: 고객 정보 등록
version: 1.0.0
category_key: crm
description:
function: 고객 정보 등록 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 정보 등록 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 정보 등록 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 정보 등록 해줘", "고객 정보 등록 결과를 알려줘", "고객 정보 등록 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: false
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_customer_detail
display_name: 고객 상세 정보 조회
version: 1.0.0
category_key: crm
description:
function: 고객 상세 정보 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 상세 정보 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 상세 정보 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 상세 정보 조회 해줘", "고객 상세 정보 조회 결과를 알려줘", "고객 상세 정보 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_customer_duplicate_check
display_name: 고객 중복 여부 확인
version: 1.0.0
category_key: crm
description:
function: 고객 중복 여부 확인 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 중복 여부 확인 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 중복 여부 확인 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 중복 여부 확인 해줘", "고객 중복 여부 확인 결과를 알려줘", "고객 중복 여부 확인 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_customer_search
display_name: 고객 통합 조회
version: 1.0.0
category_key: crm
description:
function: 고객 통합 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 통합 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 통합 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 통합 조회 해줘", "고객 통합 조회 결과를 알려줘", "고객 통합 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_customer_update
display_name: 고객 정보 수정
version: 1.0.0
category_key: crm
description:
function: 고객 정보 수정 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 정보 수정 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 정보 수정 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 정보 수정 해줘", "고객 정보 수정 결과를 알려줘", "고객 정보 수정 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_grade_change
display_name: 고객 등급 변경
version: 1.0.0
category_key: crm
description:
function: 고객 등급 변경 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 등급 변경 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 등급 변경 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 등급 변경 해줘", "고객 등급 변경 결과를 알려줘", "고객 등급 변경 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_grade_detail
display_name: 고객 등급 조회
version: 1.0.0
category_key: crm
description:
function: 고객 등급 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 등급 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 등급 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 등급 조회 해줘", "고객 등급 조회 결과를 알려줘", "고객 등급 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_owner_assign
display_name: 고객 담당자 배정
version: 1.0.0
category_key: crm
description:
function: 고객 담당자 배정 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 담당자 배정 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 담당자 배정 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 담당자 배정 해줘", "고객 담당자 배정 결과를 알려줘", "고객 담당자 배정 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_segment_detail
display_name: 고객 세그먼트 조회
version: 1.0.0
category_key: crm
description:
function: 고객 세그먼트 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 세그먼트 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 세그먼트 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 세그먼트 조회 해줘", "고객 세그먼트 조회 결과를 알려줘", "고객 세그먼트 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: crm_tag_manage
display_name: 고객 태그 관리
version: 1.0.0
category_key: crm
description:
function: 고객 태그 관리 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객 태그 관리 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객 태그 관리 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객 태그 관리 해줘", "고객 태그 관리 결과를 알려줘", "고객 태그 관리 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [crm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_assign
display_name: VOC 담당자 배정
version: 1.0.0
category_key: voc
description:
function: VOC 담당자 배정 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 담당자 배정 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 담당자 배정 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 담당자 배정 해줘", "VOC 담당자 배정 결과를 알려줘", "VOC 담당자 배정 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_attachments
display_name: VOC 첨부파일 조회
version: 1.0.0
category_key: voc
description:
function: VOC 첨부파일 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 첨부파일 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 첨부파일 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 첨부파일 조회 해줘", "VOC 첨부파일 조회 결과를 알려줘", "VOC 첨부파일 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_change_status
display_name: VOC 처리 상태 변경
version: 1.0.0
category_key: voc
description:
function: VOC 처리 상태 변경 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 처리 상태 변경 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 처리 상태 변경 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 처리 상태 변경 해줘", "VOC 처리 상태 변경 결과를 알려줘", "VOC 처리 상태 변경 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_classify_type
display_name: VOC 유형 분류
version: 1.0.0
category_key: voc
description:
function: VOC 유형 분류 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 유형 분류 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 유형 분류 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 유형 분류 해줘", "VOC 유형 분류 결과를 알려줘", "VOC 유형 분류 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_customer_history
display_name: 고객별 VOC 이력 조회
version: 1.0.0
category_key: voc
description:
function: 고객별 VOC 이력 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 고객별 VOC 이력 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 고객별 VOC 이력 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["고객별 VOC 이력 조회 해줘", "고객별 VOC 이력 조회 결과를 알려줘", "고객별 VOC 이력 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_detail
display_name: VOC 상세 조회
version: 1.0.0
category_key: voc
description:
function: VOC 상세 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 상세 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 상세 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 상세 조회 해줘", "VOC 상세 조회 결과를 알려줘", "VOC 상세 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_detect_duplicate
display_name: 중복 VOC 탐지
version: 1.0.0
category_key: voc
description:
function: 중복 VOC 탐지 기능을 수행합니다.
when_to_use: 고객채널 업무에서 중복 VOC 탐지 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 중복 VOC 탐지 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["중복 VOC 탐지 해줘", "중복 VOC 탐지 결과를 알려줘", "중복 VOC 탐지 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_extend_due_date
display_name: VOC 처리 기한 연장
version: 1.0.0
category_key: voc
description:
function: VOC 처리 기한 연장 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 처리 기한 연장 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 처리 기한 연장 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 처리 기한 연장 해줘", "VOC 처리 기한 연장 결과를 알려줘", "VOC 처리 기한 연장 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_register
display_name: VOC 접수 등록
version: 1.0.0
category_key: voc
description:
function: VOC 접수 등록 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 접수 등록 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 접수 등록 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 접수 등록 해줘", "VOC 접수 등록 결과를 알려줘", "VOC 접수 등록 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: false
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_register_result
display_name: VOC 처리 결과 등록
version: 1.0.0
category_key: voc
description:
function: VOC 처리 결과 등록 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 처리 결과 등록 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 처리 결과 등록 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 처리 결과 등록 해줘", "VOC 처리 결과 등록 결과를 알려줘", "VOC 처리 결과 등록 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_search
display_name: VOC 목록 검색
version: 1.0.0
category_key: voc
description:
function: VOC 목록 검색 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 목록 검색 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 목록 검색 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 목록 검색 해줘", "VOC 목록 검색 결과를 알려줘", "VOC 목록 검색 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_send_reply
display_name: VOC 답변 발송
version: 1.0.0
category_key: voc
description:
function: VOC 답변 발송 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 답변 발송 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 답변 발송 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 답변 발송 해줘", "VOC 답변 발송 결과를 알려줘", "VOC 답변 발송 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: false
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_set_priority
display_name: VOC 우선순위 설정
version: 1.0.0
category_key: voc
description:
function: VOC 우선순위 설정 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 우선순위 설정 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 우선순위 설정 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 우선순위 설정 해줘", "VOC 우선순위 설정 결과를 알려줘", "VOC 우선순위 설정 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_statistics
display_name: VOC 통계 조회
version: 1.0.0
category_key: voc
description:
function: VOC 통계 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 통계 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 통계 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 통계 조회 해줘", "VOC 통계 조회 결과를 알려줘", "VOC 통계 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_transfer
display_name: VOC 이관 처리
version: 1.0.0
category_key: voc
description:
function: VOC 이관 처리 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 이관 처리 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 이관 처리 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 이관 처리 해줘", "VOC 이관 처리 결과를 알려줘", "VOC 이관 처리 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_update
display_name: VOC 내용 수정
version: 1.0.0
category_key: voc
description:
function: VOC 내용 수정 기능을 수행합니다.
when_to_use: 고객채널 업무에서 VOC 내용 수정 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: VOC 내용 수정 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["VOC 내용 수정 해줘", "VOC 내용 수정 결과를 알려줘", "VOC 내용 수정 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: voc_urgent_list
display_name: 긴급 VOC 목록 조회
version: 1.0.0
category_key: voc
description:
function: 긴급 VOC 목록 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 긴급 VOC 목록 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 긴급 VOC 목록 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["긴급 VOC 목록 조회 해줘", "긴급 VOC 목록 조회 결과를 알려줘", "긴급 VOC 목록 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [voc, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_copy
display_name: 웹 콘텐츠 복사
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 복사 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 복사 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 복사 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 복사 해줘", "웹 콘텐츠 복사 결과를 알려줘", "웹 콘텐츠 복사 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: false
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_create
display_name: 웹 콘텐츠 등록
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 등록 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 등록 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 등록 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 등록 해줘", "웹 콘텐츠 등록 결과를 알려줘", "웹 콘텐츠 등록 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: false
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_delete
display_name: 웹 콘텐츠 삭제
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 삭제 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 삭제 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 삭제 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 삭제 해줘", "웹 콘텐츠 삭제 결과를 알려줘", "웹 콘텐츠 삭제 기능을 실행해줘"]
read_only: false
destructive: true
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_detail
display_name: 웹 콘텐츠 상세 조회
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 상세 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 상세 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 상세 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 상세 조회 해줘", "웹 콘텐츠 상세 조회 결과를 알려줘", "웹 콘텐츠 상세 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_list
display_name: 웹 콘텐츠 목록 조회
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 목록 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 목록 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 목록 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 목록 조회 해줘", "웹 콘텐츠 목록 조회 결과를 알려줘", "웹 콘텐츠 목록 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_preview
display_name: 웹 콘텐츠 미리보기
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 미리보기 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 미리보기 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 미리보기 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 미리보기 해줘", "웹 콘텐츠 미리보기 결과를 알려줘", "웹 콘텐츠 미리보기 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_publish
display_name: 웹 콘텐츠 게시
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 게시 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 게시 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 게시 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 게시 해줘", "웹 콘텐츠 게시 결과를 알려줘", "웹 콘텐츠 게시 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_request_approval
display_name: 웹 콘텐츠 승인 요청
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 승인 요청 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 승인 요청 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 승인 요청 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 승인 요청 해줘", "웹 콘텐츠 승인 요청 결과를 알려줘", "웹 콘텐츠 승인 요청 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_restore_version
display_name: 웹 콘텐츠 이전 버전 복원
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 이전 버전 복원 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 이전 버전 복원 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 이전 버전 복원 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 이전 버전 복원 해줘", "웹 콘텐츠 이전 버전 복원 결과를 알려줘", "웹 콘텐츠 이전 버전 복원 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_review_approval
display_name: 웹 콘텐츠 승인·반려
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 승인·반려 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 승인·반려 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 승인·반려 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 승인·반려 해줘", "웹 콘텐츠 승인·반려 결과를 알려줘", "웹 콘텐츠 승인·반려 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_schedule_publish
display_name: 웹 콘텐츠 예약 게시
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 예약 게시 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 예약 게시 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 예약 게시 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 예약 게시 해줘", "웹 콘텐츠 예약 게시 결과를 알려줘", "웹 콘텐츠 예약 게시 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_unpublish
display_name: 웹 콘텐츠 게시 중지
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 게시 중지 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 게시 중지 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 게시 중지 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 게시 중지 해줘", "웹 콘텐츠 게시 중지 결과를 알려줘", "웹 콘텐츠 게시 중지 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_update
display_name: 웹 콘텐츠 수정
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 수정 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 수정 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 수정 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 수정 해줘", "웹 콘텐츠 수정 결과를 알려줘", "웹 콘텐츠 수정 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_content_version_history
display_name: 웹 콘텐츠 버전 이력 조회
version: 1.0.0
category_key: wcm
description:
function: 웹 콘텐츠 버전 이력 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 웹 콘텐츠 버전 이력 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 웹 콘텐츠 버전 이력 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["웹 콘텐츠 버전 이력 조회 해줘", "웹 콘텐츠 버전 이력 조회 결과를 알려줘", "웹 콘텐츠 버전 이력 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_metadata_detail
display_name: 콘텐츠 메타데이터 조회
version: 1.0.0
category_key: wcm
description:
function: 콘텐츠 메타데이터 조회 기능을 수행합니다.
when_to_use: 고객채널 업무에서 콘텐츠 메타데이터 조회 기능이 필요할 때 사용합니다.
when_not_to_use: 정보 변경이나 승인 처리가 필요한 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 조회 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 콘텐츠 메타데이터 조회 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["콘텐츠 메타데이터 조회 해줘", "콘텐츠 메타데이터 조회 결과를 알려줘", "콘텐츠 메타데이터 조회 기능을 실행해줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_metadata_upsert
display_name: 콘텐츠 메타데이터 등록·수정
version: 1.0.0
category_key: wcm
description:
function: 콘텐츠 메타데이터 등록·수정 기능을 수행합니다.
when_to_use: 고객채널 업무에서 콘텐츠 메타데이터 등록·수정 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 콘텐츠 메타데이터 등록·수정 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["콘텐츠 메타데이터 등록·수정 해줘", "콘텐츠 메타데이터 등록·수정 결과를 알려줘", "콘텐츠 메타데이터 등록·수정 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,30 +0,0 @@
name: wcm_taxonomy_manage
display_name: 콘텐츠 카테고리·태그 관리
version: 1.0.0
category_key: wcm
description:
function: 콘텐츠 카테고리·태그 관리 기능을 수행합니다.
when_to_use: 고객채널 업무에서 콘텐츠 카테고리·태그 관리 기능이 필요할 때 사용합니다.
when_not_to_use: 필수 식별자와 변경 내용이 확인되지 않은 경우에는 사용하지 않습니다.
io_limits: 입력 범위에 대한 모의 처리 결과만 반환하며 외부 시스템을 직접 변경하지 않습니다.
display_description: 콘텐츠 카테고리·태그 관리 기능을 안전한 모의 데이터로 제공합니다.
example_queries: ["콘텐츠 카테고리·태그 관리 해줘", "콘텐츠 카테고리·태그 관리 결과를 알려줘", "콘텐츠 카테고리·태그 관리 기능을 실행해줘"]
read_only: false
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 업무 대상 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
customerId: {type: string, description: 고객 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
content: {type: string, description: 검색어 또는 처리 내용, maxLength: 2000}
value: {type: string, description: 상태·유형·등급 또는 처리 값, maxLength: 100}
assigneeId: {type: string, description: 담당자 식별자, pattern: "^[A-Za-z0-9_-]{3,40}$"}
startDate: {type: string, description: 조회 시작일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
endDate: {type: string, description: 조회 종료일 또는 처리 예정일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
page: {type: integer, description: 페이지 번호, minimum: 0}
size: {type: integer, description: 페이지 크기, minimum: 1, maximum: 100}
additionalProperties: false
tags: [wcm, 고객채널, 처리, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -7,34 +7,146 @@ import org.springaicommunity.mcp.annotation.McpTool;
public interface AgentInquiryUseCase { public interface AgentInquiryUseCase {
@McpTool(name = "agt_agent_profile", title = "GA 설계사 기본정보 조회", description = "GA 설계사 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_agent_profile", title = "GA 설계사 기본정보 조회", description = "GA 설계사 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_AGENT_PROFILE") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_AGENT_PROFILE",
functionDescription = "GA 설계사 기본정보 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 기본정보 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 기본정보 조회 정보를 보여줘", "GA 설계사 기본정보 조회 결과를 확인해줘", "현재 GA 설계사 기본정보 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getAgentProfile(AgentToolRequest request); AgentToolResponse getAgentProfile(AgentToolRequest request);
@McpTool(name = "agt_appointment_status", title = "GA 설계사 위촉상태 조회", description = "GA 설계사 위촉상태 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_appointment_status", title = "GA 설계사 위촉상태 조회", description = "GA 설계사 위촉상태 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_APPOINTMENT_STATUS") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_APPOINTMENT_STATUS",
functionDescription = "GA 설계사 위촉상태 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 위촉상태 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 위촉상태 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 위촉상태 조회 정보를 보여줘", "GA 설계사 위촉상태 조회 결과를 확인해줘", "현재 GA 설계사 위촉상태 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getAppointmentStatus(AgentToolRequest request); AgentToolResponse getAppointmentStatus(AgentToolRequest request);
@McpTool(name = "agt_agent_license", title = "GA 설계사 자격정보 조회", description = "GA 설계사 자격정보 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_agent_license", title = "GA 설계사 자격정보 조회", description = "GA 설계사 자격정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_AGENT_LICENSE") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_AGENT_LICENSE",
functionDescription = "GA 설계사 자격정보 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 자격정보 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 자격정보 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 자격정보 조회 정보를 보여줘", "GA 설계사 자격정보 조회 결과를 확인해줘", "현재 GA 설계사 자격정보 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getAgentLicense(AgentToolRequest request); AgentToolResponse getAgentLicense(AgentToolRequest request);
@McpTool(name = "agt_commission_grade", title = "GA 설계사 수수료등급 조회", description = "GA 설계사 수수료등급 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_commission_grade", title = "GA 설계사 수수료등급 조회", description = "GA 설계사 수수료등급 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_COMMISSION_GRADE") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_COMMISSION_GRADE",
functionDescription = "GA 설계사 수수료등급 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 수수료등급 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 수수료등급 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 수수료등급 조회 정보를 보여줘", "GA 설계사 수수료등급 조회 결과를 확인해줘", "현재 GA 설계사 수수료등급 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getCommissionGrade(AgentToolRequest request); AgentToolResponse getCommissionGrade(AgentToolRequest request);
@McpTool(name = "agt_agent_education", title = "GA 설계사 교육이력 조회", description = "GA 설계사 교육이력 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_agent_education", title = "GA 설계사 교육이력 조회", description = "GA 설계사 교육이력 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_AGENT_EDUCATION") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_AGENT_EDUCATION",
functionDescription = "GA 설계사 교육이력 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 교육이력 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 교육이력 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 교육이력 조회 정보를 보여줘", "GA 설계사 교육이력 조회 결과를 확인해줘", "현재 GA 설계사 교육이력 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getAgentEducation(AgentToolRequest request); AgentToolResponse getAgentEducation(AgentToolRequest request);
@McpTool(name = "agt_agent_compliance", title = "GA 설계사 준법정보 조회", description = "GA 설계사 준법정보 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_agent_compliance", title = "GA 설계사 준법정보 조회", description = "GA 설계사 준법정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_AGENT_COMPLIANCE") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_AGENT_COMPLIANCE",
functionDescription = "GA 설계사 준법정보 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 준법정보 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 준법정보 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 준법정보 조회 정보를 보여줘", "GA 설계사 준법정보 조회 결과를 확인해줘", "현재 GA 설계사 준법정보 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getAgentCompliance(AgentToolRequest request); AgentToolResponse getAgentCompliance(AgentToolRequest request);
@McpTool(name = "agt_customer_assignment", title = "GA 설계사 고객배정 조회", description = "GA 설계사 고객배정 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_customer_assignment", title = "GA 설계사 고객배정 조회", description = "GA 설계사 고객배정 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_CUSTOMER_ASSIGNMENT") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_CUSTOMER_ASSIGNMENT",
functionDescription = "GA 설계사 고객배정 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 고객배정 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 고객배정 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 고객배정 조회 정보를 보여줘", "GA 설계사 고객배정 조회 결과를 확인해줘", "현재 GA 설계사 고객배정 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getCustomerAssignment(AgentToolRequest request); AgentToolResponse getCustomerAssignment(AgentToolRequest request);
@McpTool(name = "agt_activity_status", title = "GA 설계사 활동상태 조회", description = "GA 설계사 활동상태 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_activity_status", title = "GA 설계사 활동상태 조회", description = "GA 설계사 활동상태 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_ACTIVITY_STATUS") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_ACTIVITY_STATUS",
functionDescription = "GA 설계사 활동상태 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 활동상태 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 활동상태 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 활동상태 조회 정보를 보여줘", "GA 설계사 활동상태 조회 결과를 확인해줘", "현재 GA 설계사 활동상태 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getActivityStatus(AgentToolRequest request); AgentToolResponse getActivityStatus(AgentToolRequest request);
} }

View File

@@ -7,38 +7,164 @@ import org.springaicommunity.mcp.annotation.McpTool;
public interface AgentPerformanceUseCase { public interface AgentPerformanceUseCase {
@McpTool(name = "agt_production_summary", title = "GA 설계사 신계약 실적 조회", description = "GA 설계사 신계약 실적 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_production_summary", title = "GA 설계사 신계약 실적 조회", description = "GA 설계사 신계약 실적 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_PRODUCTION_SUMMARY") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_PRODUCTION_SUMMARY",
functionDescription = "GA 설계사 신계약 실적 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 신계약 실적 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 신계약 실적 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 신계약 실적 조회 정보를 보여줘", "GA 설계사 신계약 실적 조회 결과를 확인해줘", "현재 GA 설계사 신계약 실적 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getProductionSummary(AgentToolRequest request); AgentToolResponse getProductionSummary(AgentToolRequest request);
@McpTool(name = "agt_contract_count", title = "GA 설계사 계약건수 조회", description = "GA 설계사 계약건수 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_contract_count", title = "GA 설계사 계약건수 조회", description = "GA 설계사 계약건수 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_CONTRACT_COUNT") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_CONTRACT_COUNT",
functionDescription = "GA 설계사 계약건수 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 계약건수 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 계약건수 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 계약건수 조회 정보를 보여줘", "GA 설계사 계약건수 조회 결과를 확인해줘", "현재 GA 설계사 계약건수 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getContractCount(AgentToolRequest request); AgentToolResponse getContractCount(AgentToolRequest request);
@McpTool(name = "agt_premium_summary", title = "GA 설계사 보험료 실적 조회", description = "GA 설계사 보험료 실적 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_premium_summary", title = "GA 설계사 보험료 실적 조회", description = "GA 설계사 보험료 실적 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_PREMIUM_SUMMARY") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_PREMIUM_SUMMARY",
functionDescription = "GA 설계사 보험료 실적 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 보험료 실적 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 보험료 실적 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 보험료 실적 조회 정보를 보여줘", "GA 설계사 보험료 실적 조회 결과를 확인해줘", "현재 GA 설계사 보험료 실적 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getPremiumSummary(AgentToolRequest request); AgentToolResponse getPremiumSummary(AgentToolRequest request);
@McpTool(name = "agt_persistency_rate", title = "GA 설계사 계약유지율 조회", description = "GA 설계사 계약유지율 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_persistency_rate", title = "GA 설계사 계약유지율 조회", description = "GA 설계사 계약유지율 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_PERSISTENCY_RATE") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_PERSISTENCY_RATE",
functionDescription = "GA 설계사 계약유지율 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 계약유지율 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 계약유지율 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 계약유지율 조회 정보를 보여줘", "GA 설계사 계약유지율 조회 결과를 확인해줘", "현재 GA 설계사 계약유지율 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getPersistencyRate(AgentToolRequest request); AgentToolResponse getPersistencyRate(AgentToolRequest request);
@McpTool(name = "agt_claim_support", title = "GA 보험금 청구지원 현황 조회", description = "GA 보험금 청구지원 현황 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_claim_support", title = "GA 보험금 청구지원 현황 조회", description = "GA 보험금 청구지원 현황 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_CLAIM_SUPPORT") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_CLAIM_SUPPORT",
functionDescription = "GA 보험금 청구지원 현황 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 보험금 청구지원 현황 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 보험금 청구지원 현황 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 보험금 청구지원 현황 조회 정보를 보여줘", "GA 보험금 청구지원 현황 조회 결과를 확인해줘", "현재 GA 보험금 청구지원 현황 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getClaimSupport(AgentToolRequest request); AgentToolResponse getClaimSupport(AgentToolRequest request);
@McpTool(name = "agt_commission_summary", title = "GA 설계사 수수료 요약 조회", description = "GA 설계사 수수료 요약 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_commission_summary", title = "GA 설계사 수수료 요약 조회", description = "GA 설계사 수수료 요약 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_COMMISSION_SUMMARY") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_COMMISSION_SUMMARY",
functionDescription = "GA 설계사 수수료 요약 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 수수료 요약 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 수수료 요약 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 수수료 요약 조회 정보를 보여줘", "GA 설계사 수수료 요약 조회 결과를 확인해줘", "현재 GA 설계사 수수료 요약 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getCommissionSummary(AgentToolRequest request); AgentToolResponse getCommissionSummary(AgentToolRequest request);
@McpTool(name = "agt_campaign", title = "GA 영업 캠페인 조회", description = "GA 영업 캠페인 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_campaign", title = "GA 영업 캠페인 조회", description = "GA 영업 캠페인 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_CAMPAIGN") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_CAMPAIGN",
functionDescription = "GA 영업 캠페인 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 영업 캠페인 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 영업 캠페인 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 영업 캠페인 조회 정보를 보여줘", "GA 영업 캠페인 조회 결과를 확인해줘", "현재 GA 영업 캠페인 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getCampaign(AgentToolRequest request); AgentToolResponse getCampaign(AgentToolRequest request);
@McpTool(name = "agt_task_list", title = "GA 설계사 업무목록 조회", description = "GA 설계사 업무목록 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_task_list", title = "GA 설계사 업무목록 조회", description = "GA 설계사 업무목록 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_TASK_LIST") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_TASK_LIST",
functionDescription = "GA 설계사 업무목록 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 업무목록 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 업무목록 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 업무목록 조회 정보를 보여줘", "GA 설계사 업무목록 조회 결과를 확인해줘", "현재 GA 설계사 업무목록 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getTaskList(AgentToolRequest request); AgentToolResponse getTaskList(AgentToolRequest request);
@McpTool(name = "agt_notice_list", title = "GA 설계사 공지목록 조회", description = "GA 설계사 공지목록 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_notice_list", title = "GA 설계사 공지목록 조회", description = "GA 설계사 공지목록 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_NOTICE_LIST") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_NOTICE_LIST",
functionDescription = "GA 설계사 공지목록 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 설계사 공지목록 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 설계사 공지목록 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 설계사 공지목록 조회 정보를 보여줘", "GA 설계사 공지목록 조회 결과를 확인해줘", "현재 GA 설계사 공지목록 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getNoticeList(AgentToolRequest request); AgentToolResponse getNoticeList(AgentToolRequest request);
} }

View File

@@ -7,34 +7,146 @@ import org.springaicommunity.mcp.annotation.McpTool;
public interface GaOrganizationUseCase { public interface GaOrganizationUseCase {
@McpTool(name = "agt_ga_profile", title = "GA 조직 기본정보 조회", description = "GA 조직 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_ga_profile", title = "GA 조직 기본정보 조회", description = "GA 조직 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_GA_PROFILE") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_GA_PROFILE",
functionDescription = "GA 조직 기본정보 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 조직 기본정보 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 조직 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 조직 기본정보 조회 정보를 보여줘", "GA 조직 기본정보 조회 결과를 확인해줘", "현재 GA 조직 기본정보 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getGaProfile(AgentToolRequest request); AgentToolResponse getGaProfile(AgentToolRequest request);
@McpTool(name = "agt_branch_list", title = "GA 지점목록 조회", description = "GA 지점목록 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_branch_list", title = "GA 지점목록 조회", description = "GA 지점목록 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_BRANCH_LIST") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_BRANCH_LIST",
functionDescription = "GA 지점목록 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 지점목록 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 지점목록 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 지점목록 조회 정보를 보여줘", "GA 지점목록 조회 결과를 확인해줘", "현재 GA 지점목록 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getBranchList(AgentToolRequest request); AgentToolResponse getBranchList(AgentToolRequest request);
@McpTool(name = "agt_organization_tree", title = "GA 조직도 조회", description = "GA 조직도 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_organization_tree", title = "GA 조직도 조회", description = "GA 조직도 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_ORGANIZATION_TREE") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_ORGANIZATION_TREE",
functionDescription = "GA 조직도 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 조직도 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 조직도 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 조직도 조회 정보를 보여줘", "GA 조직도 조회 결과를 확인해줘", "현재 GA 조직도 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getOrganizationTree(AgentToolRequest request); AgentToolResponse getOrganizationTree(AgentToolRequest request);
@McpTool(name = "agt_organization_manager", title = "GA 조직 책임자 조회", description = "GA 조직 책임자 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_organization_manager", title = "GA 조직 책임자 조회", description = "GA 조직 책임자 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_ORGANIZATION_MANAGER") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_ORGANIZATION_MANAGER",
functionDescription = "GA 조직 책임자 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 조직 책임자 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 조직 책임자 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 조직 책임자 조회 정보를 보여줘", "GA 조직 책임자 조회 결과를 확인해줘", "현재 GA 조직 책임자 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getOrganizationManager(AgentToolRequest request); AgentToolResponse getOrganizationManager(AgentToolRequest request);
@McpTool(name = "agt_organization_agent_list", title = "GA 소속 설계사 목록 조회", description = "GA 소속 설계사 목록 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_organization_agent_list", title = "GA 소속 설계사 목록 조회", description = "GA 소속 설계사 목록 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_ORGANIZATION_AGENT_LIST") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_ORGANIZATION_AGENT_LIST",
functionDescription = "GA 소속 설계사 목록 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 소속 설계사 목록 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 소속 설계사 목록 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 소속 설계사 목록 조회 정보를 보여줘", "GA 소속 설계사 목록 조회 결과를 확인해줘", "현재 GA 소속 설계사 목록 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getOrganizationAgentList(AgentToolRequest request); AgentToolResponse getOrganizationAgentList(AgentToolRequest request);
@McpTool(name = "agt_sales_area", title = "GA 영업지역 조회", description = "GA 영업지역 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_sales_area", title = "GA 영업지역 조회", description = "GA 영업지역 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_SALES_AREA") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_SALES_AREA",
functionDescription = "GA 영업지역 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 영업지역 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 영업지역 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 영업지역 조회 정보를 보여줘", "GA 영업지역 조회 결과를 확인해줘", "현재 GA 영업지역 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getSalesArea(AgentToolRequest request); AgentToolResponse getSalesArea(AgentToolRequest request);
@McpTool(name = "agt_affiliation_history", title = "GA 소속변경 이력 조회", description = "GA 소속변경 이력 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_affiliation_history", title = "GA 소속변경 이력 조회", description = "GA 소속변경 이력 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_AFFILIATION_HISTORY") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_AFFILIATION_HISTORY",
functionDescription = "GA 소속변경 이력 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 소속변경 이력 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 소속변경 이력 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 소속변경 이력 조회 정보를 보여줘", "GA 소속변경 이력 조회 결과를 확인해줘", "현재 GA 소속변경 이력 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getAffiliationHistory(AgentToolRequest request); AgentToolResponse getAffiliationHistory(AgentToolRequest request);
@McpTool(name = "agt_support_contact", title = "GA 업무지원 연락처 조회", description = "GA 업무지원 연락처 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "agt_support_contact", title = "GA 업무지원 연락처 조회", description = "GA 업무지원 연락처 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_SUPPORT_CONTACT") @GrowToolHint(
requiresApproval = false,
categoryKey = "agt",
mappingId = "DIRECT_AGT_SUPPORT_CONTACT",
functionDescription = "GA 업무지원 연락처 조회 정보를 조회합니다.",
whenToUse = "GA·설계사 업무에서 GA 업무지원 연락처 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "GA 업무지원 연락처 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"GA 업무지원 연락처 조회 정보를 보여줘", "GA 업무지원 연락처 조회 결과를 확인해줘", "현재 GA 업무지원 연락처 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"agt", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
AgentToolResponse getSupportContact(AgentToolRequest request); AgentToolResponse getSupportContact(AgentToolRequest request);
} }

View File

@@ -7,34 +7,146 @@ import org.springaicommunity.mcp.annotation.McpTool;
public interface ClaimInquiryUseCase { public interface ClaimInquiryUseCase {
@McpTool(name = "pro_claim_eligibility", title = "보험금 청구 가능여부 조회", description = "보험금 청구 가능여부 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_claim_eligibility", title = "보험금 청구 가능여부 조회", description = "보험금 청구 가능여부 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_ELIGIBILITY") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CLAIM_ELIGIBILITY",
functionDescription = "보험금 청구 가능여부 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험금 청구 가능여부 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험금 청구 가능여부 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험금 청구 가능여부 조회 정보를 보여줘", "보험금 청구 가능여부 조회 결과를 확인해줘", "현재 보험금 청구 가능여부 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getClaimEligibility(ProductToolRequest request); ProductToolResponse getClaimEligibility(ProductToolRequest request);
@McpTool(name = "pro_claim_history", title = "보험금 청구이력 조회", description = "보험금 청구이력 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_claim_history", title = "보험금 청구이력 조회", description = "보험금 청구이력 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_HISTORY") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CLAIM_HISTORY",
functionDescription = "보험금 청구이력 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험금 청구이력 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험금 청구이력 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험금 청구이력 조회 정보를 보여줘", "보험금 청구이력 조회 결과를 확인해줘", "현재 보험금 청구이력 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getClaimHistory(ProductToolRequest request); ProductToolResponse getClaimHistory(ProductToolRequest request);
@McpTool(name = "pro_claim_status", title = "보험금 청구상태 조회", description = "보험금 청구상태 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_claim_status", title = "보험금 청구상태 조회", description = "보험금 청구상태 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_STATUS") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CLAIM_STATUS",
functionDescription = "보험금 청구상태 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험금 청구상태 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험금 청구상태 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험금 청구상태 조회 정보를 보여줘", "보험금 청구상태 조회 결과를 확인해줘", "현재 보험금 청구상태 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getClaimStatus(ProductToolRequest request); ProductToolResponse getClaimStatus(ProductToolRequest request);
@McpTool(name = "pro_claim_documents", title = "보험금 청구서류 조회", description = "보험금 청구서류 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_claim_documents", title = "보험금 청구서류 조회", description = "보험금 청구서류 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_DOCUMENTS") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CLAIM_DOCUMENTS",
functionDescription = "보험금 청구서류 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험금 청구서류 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험금 청구서류 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험금 청구서류 조회 정보를 보여줘", "보험금 청구서류 조회 결과를 확인해줘", "현재 보험금 청구서류 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getClaimDocuments(ProductToolRequest request); ProductToolResponse getClaimDocuments(ProductToolRequest request);
@McpTool(name = "pro_claim_payment", title = "보험금 지급내역 조회", description = "보험금 지급내역 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_claim_payment", title = "보험금 지급내역 조회", description = "보험금 지급내역 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_PAYMENT") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CLAIM_PAYMENT",
functionDescription = "보험금 지급내역 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험금 지급내역 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험금 지급내역 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험금 지급내역 조회 정보를 보여줘", "보험금 지급내역 조회 결과를 확인해줘", "현재 보험금 지급내역 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getClaimPayment(ProductToolRequest request); ProductToolResponse getClaimPayment(ProductToolRequest request);
@McpTool(name = "pro_claim_accident", title = "보험사고 정보 조회", description = "보험사고 정보 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_claim_accident", title = "보험사고 정보 조회", description = "보험사고 정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_ACCIDENT") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CLAIM_ACCIDENT",
functionDescription = "보험사고 정보 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험사고 정보 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험사고 정보 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험사고 정보 조회 정보를 보여줘", "보험사고 정보 조회 결과를 확인해줘", "현재 보험사고 정보 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getClaimAccident(ProductToolRequest request); ProductToolResponse getClaimAccident(ProductToolRequest request);
@McpTool(name = "pro_claim_beneficiary", title = "보험금 수익자 조회", description = "보험금 수익자 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_claim_beneficiary", title = "보험금 수익자 조회", description = "보험금 수익자 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_BENEFICIARY") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CLAIM_BENEFICIARY",
functionDescription = "보험금 수익자 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험금 수익자 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험금 수익자 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험금 수익자 조회 정보를 보여줘", "보험금 수익자 조회 결과를 확인해줘", "현재 보험금 수익자 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getClaimBeneficiary(ProductToolRequest request); ProductToolResponse getClaimBeneficiary(ProductToolRequest request);
@McpTool(name = "pro_claim_contact", title = "보험금 청구 담당자 조회", description = "보험금 청구 담당자 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_claim_contact", title = "보험금 청구 담당자 조회", description = "보험금 청구 담당자 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_CONTACT") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CLAIM_CONTACT",
functionDescription = "보험금 청구 담당자 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험금 청구 담당자 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험금 청구 담당자 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험금 청구 담당자 조회 정보를 보여줘", "보험금 청구 담당자 조회 결과를 확인해줘", "현재 보험금 청구 담당자 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getClaimContact(ProductToolRequest request); ProductToolResponse getClaimContact(ProductToolRequest request);
} }

View File

@@ -7,38 +7,164 @@ import org.springaicommunity.mcp.annotation.McpTool;
public interface ContractInquiryUseCase { public interface ContractInquiryUseCase {
@McpTool(name = "pro_contract_list", title = "보험계약 목록 조회", description = "보험계약 목록 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_contract_list", title = "보험계약 목록 조회", description = "보험계약 목록 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_LIST") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CONTRACT_LIST",
functionDescription = "보험계약 목록 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험계약 목록 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험계약 목록 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험계약 목록 조회 정보를 보여줘", "보험계약 목록 조회 결과를 확인해줘", "현재 보험계약 목록 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getContractList(ProductToolRequest request); ProductToolResponse getContractList(ProductToolRequest request);
@McpTool(name = "pro_contract_detail", title = "보험계약 상세 조회", description = "보험계약 상세 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_contract_detail", title = "보험계약 상세 조회", description = "보험계약 상세 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_DETAIL") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CONTRACT_DETAIL",
functionDescription = "보험계약 상세 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험계약 상세 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험계약 상세 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험계약 상세 조회 정보를 보여줘", "보험계약 상세 조회 결과를 확인해줘", "현재 보험계약 상세 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getContractDetail(ProductToolRequest request); ProductToolResponse getContractDetail(ProductToolRequest request);
@McpTool(name = "pro_contract_coverage", title = "보험계약 보장내역 조회", description = "보험계약 보장내역 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_contract_coverage", title = "보험계약 보장내역 조회", description = "보험계약 보장내역 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_COVERAGE") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CONTRACT_COVERAGE",
functionDescription = "보험계약 보장내역 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험계약 보장내역 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험계약 보장내역 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험계약 보장내역 조회 정보를 보여줘", "보험계약 보장내역 조회 결과를 확인해줘", "현재 보험계약 보장내역 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getContractCoverage(ProductToolRequest request); ProductToolResponse getContractCoverage(ProductToolRequest request);
@McpTool(name = "pro_contract_premium", title = "보험계약 보험료 조회", description = "보험계약 보험료 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_contract_premium", title = "보험계약 보험료 조회", description = "보험계약 보험료 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_PREMIUM") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CONTRACT_PREMIUM",
functionDescription = "보험계약 보험료 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험계약 보험료 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험계약 보험료 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험계약 보험료 조회 정보를 보여줘", "보험계약 보험료 조회 결과를 확인해줘", "현재 보험계약 보험료 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getContractPremium(ProductToolRequest request); ProductToolResponse getContractPremium(ProductToolRequest request);
@McpTool(name = "pro_contract_payment_status", title = "보험료 납입상태 조회", description = "보험료 납입상태 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_contract_payment_status", title = "보험료 납입상태 조회", description = "보험료 납입상태 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_PAYMENT_STATUS") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CONTRACT_PAYMENT_STATUS",
functionDescription = "보험료 납입상태 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험료 납입상태 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험료 납입상태 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험료 납입상태 조회 정보를 보여줘", "보험료 납입상태 조회 결과를 확인해줘", "현재 보험료 납입상태 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getContractPaymentStatus(ProductToolRequest request); ProductToolResponse getContractPaymentStatus(ProductToolRequest request);
@McpTool(name = "pro_contract_beneficiary", title = "보험계약 수익자 조회", description = "보험계약 수익자 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_contract_beneficiary", title = "보험계약 수익자 조회", description = "보험계약 수익자 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_BENEFICIARY") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CONTRACT_BENEFICIARY",
functionDescription = "보험계약 수익자 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험계약 수익자 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험계약 수익자 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험계약 수익자 조회 정보를 보여줘", "보험계약 수익자 조회 결과를 확인해줘", "현재 보험계약 수익자 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getContractBeneficiary(ProductToolRequest request); ProductToolResponse getContractBeneficiary(ProductToolRequest request);
@McpTool(name = "pro_contract_surrender_value", title = "보험계약 해지환급금 조회", description = "보험계약 해지환급금 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_contract_surrender_value", title = "보험계약 해지환급금 조회", description = "보험계약 해지환급금 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_SURRENDER_VALUE") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CONTRACT_SURRENDER_VALUE",
functionDescription = "보험계약 해지환급금 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험계약 해지환급금 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험계약 해지환급금 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험계약 해지환급금 조회 정보를 보여줘", "보험계약 해지환급금 조회 결과를 확인해줘", "현재 보험계약 해지환급금 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getContractSurrenderValue(ProductToolRequest request); ProductToolResponse getContractSurrenderValue(ProductToolRequest request);
@McpTool(name = "pro_contract_loan_status", title = "보험계약 대출현황 조회", description = "보험계약 대출현황 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_contract_loan_status", title = "보험계약 대출현황 조회", description = "보험계약 대출현황 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_LOAN_STATUS") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CONTRACT_LOAN_STATUS",
functionDescription = "보험계약 대출현황 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험계약 대출현황 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험계약 대출현황 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험계약 대출현황 조회 정보를 보여줘", "보험계약 대출현황 조회 결과를 확인해줘", "현재 보험계약 대출현황 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getContractLoanStatus(ProductToolRequest request); ProductToolResponse getContractLoanStatus(ProductToolRequest request);
@McpTool(name = "pro_contract_rider_list", title = "보험계약 특약목록 조회", description = "보험계약 특약목록 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_contract_rider_list", title = "보험계약 특약목록 조회", description = "보험계약 특약목록 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_RIDER_LIST") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CONTRACT_RIDER_LIST",
functionDescription = "보험계약 특약목록 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 보험계약 특약목록 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "보험계약 특약목록 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"보험계약 특약목록 조회 정보를 보여줘", "보험계약 특약목록 조회 결과를 확인해줘", "현재 보험계약 특약목록 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getContractRiderList(ProductToolRequest request); ProductToolResponse getContractRiderList(ProductToolRequest request);
} }

View File

@@ -7,34 +7,146 @@ import org.springaicommunity.mcp.annotation.McpTool;
public interface CustomerInquiryUseCase { public interface CustomerInquiryUseCase {
@McpTool(name = "pro_customer_profile", title = "고객 기본정보 조회", description = "고객 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_customer_profile", title = "고객 기본정보 조회", description = "고객 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_PROFILE") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CUSTOMER_PROFILE",
functionDescription = "고객 기본정보 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 고객 기본정보 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "고객 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 기본정보 조회 정보를 보여줘", "고객 기본정보 조회 결과를 확인해줘", "현재 고객 기본정보 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getCustomerProfile(ProductToolRequest request); ProductToolResponse getCustomerProfile(ProductToolRequest request);
@McpTool(name = "pro_customer_contact", title = "고객 연락처 조회", description = "고객 연락처 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_customer_contact", title = "고객 연락처 조회", description = "고객 연락처 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_CONTACT") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CUSTOMER_CONTACT",
functionDescription = "고객 연락처 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 고객 연락처 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "고객 연락처 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 연락처 조회 정보를 보여줘", "고객 연락처 조회 결과를 확인해줘", "현재 고객 연락처 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getCustomerContact(ProductToolRequest request); ProductToolResponse getCustomerContact(ProductToolRequest request);
@McpTool(name = "pro_customer_consent", title = "고객 동의정보 조회", description = "고객 동의정보 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_customer_consent", title = "고객 동의정보 조회", description = "고객 동의정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_CONSENT") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CUSTOMER_CONSENT",
functionDescription = "고객 동의정보 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 고객 동의정보 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "고객 동의정보 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 동의정보 조회 정보를 보여줘", "고객 동의정보 조회 결과를 확인해줘", "현재 고객 동의정보 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getCustomerConsent(ProductToolRequest request); ProductToolResponse getCustomerConsent(ProductToolRequest request);
@McpTool(name = "pro_customer_identity", title = "고객 본인확인정보 조회", description = "고객 본인확인정보 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_customer_identity", title = "고객 본인확인정보 조회", description = "고객 본인확인정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_IDENTITY") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CUSTOMER_IDENTITY",
functionDescription = "고객 본인확인정보 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 고객 본인확인정보 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "고객 본인확인정보 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 본인확인정보 조회 정보를 보여줘", "고객 본인확인정보 조회 결과를 확인해줘", "현재 고객 본인확인정보 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getCustomerIdentity(ProductToolRequest request); ProductToolResponse getCustomerIdentity(ProductToolRequest request);
@McpTool(name = "pro_customer_address", title = "고객 주소정보 조회", description = "고객 주소정보 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_customer_address", title = "고객 주소정보 조회", description = "고객 주소정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_ADDRESS") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CUSTOMER_ADDRESS",
functionDescription = "고객 주소정보 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 고객 주소정보 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "고객 주소정보 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 주소정보 조회 정보를 보여줘", "고객 주소정보 조회 결과를 확인해줘", "현재 고객 주소정보 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getCustomerAddress(ProductToolRequest request); ProductToolResponse getCustomerAddress(ProductToolRequest request);
@McpTool(name = "pro_customer_occupation", title = "고객 직업정보 조회", description = "고객 직업정보 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_customer_occupation", title = "고객 직업정보 조회", description = "고객 직업정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_OCCUPATION") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CUSTOMER_OCCUPATION",
functionDescription = "고객 직업정보 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 고객 직업정보 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "고객 직업정보 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 직업정보 조회 정보를 보여줘", "고객 직업정보 조회 결과를 확인해줘", "현재 고객 직업정보 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getCustomerOccupation(ProductToolRequest request); ProductToolResponse getCustomerOccupation(ProductToolRequest request);
@McpTool(name = "pro_customer_family", title = "고객 가족정보 조회", description = "고객 가족정보 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_customer_family", title = "고객 가족정보 조회", description = "고객 가족정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_FAMILY") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CUSTOMER_FAMILY",
functionDescription = "고객 가족정보 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 고객 가족정보 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "고객 가족정보 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 가족정보 조회 정보를 보여줘", "고객 가족정보 조회 결과를 확인해줘", "현재 고객 가족정보 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getCustomerFamily(ProductToolRequest request); ProductToolResponse getCustomerFamily(ProductToolRequest request);
@McpTool(name = "pro_customer_risk_grade", title = "고객 위험등급 조회", description = "고객 위험등급 조회 정보를 안전한 모의 데이터로 제공합니다.") @McpTool(name = "pro_customer_risk_grade", title = "고객 위험등급 조회", description = "고객 위험등급 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_RISK_GRADE") @GrowToolHint(
requiresApproval = false,
categoryKey = "pro",
mappingId = "DIRECT_PRO_CUSTOMER_RISK_GRADE",
functionDescription = "고객 위험등급 조회 정보를 조회합니다.",
whenToUse = "고객·보험계약 업무에서 고객 위험등급 조회 정보가 필요할 때 사용합니다.",
whenNotToUse = "정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.",
ioLimits = "입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.",
displayDescription = "고객 위험등급 조회 정보를 안전한 모의 데이터로 제공합니다.",
exampleQueries = {"고객 위험등급 조회 정보를 보여줘", "고객 위험등급 조회 결과를 확인해줘", "현재 고객 위험등급 조회 내용을 알려줘"},
destructive = false,
idempotent = true,
tags = {"pro", "조회", "mock"},
ownerOrg = "MCP_TOOL"
)
ProductToolResponse getCustomerRiskGrade(ProductToolRequest request); ProductToolResponse getCustomerRiskGrade(ProductToolRequest request);
} }

View File

@@ -1,24 +0,0 @@
name: agt_activity_status
display_name: GA 설계사 활동상태 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 활동상태 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 활동상태 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 활동상태 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 활동상태 조회 정보를 보여줘", "GA 설계사 활동상태 조회 결과를 확인해줘", "현재 GA 설계사 활동상태 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_affiliation_history
display_name: GA 소속변경 이력 조회
version: 1.0.0
category_key: agt
description:
function: GA 소속변경 이력 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 소속변경 이력 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 소속변경 이력 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 소속변경 이력 조회 정보를 보여줘", "GA 소속변경 이력 조회 결과를 확인해줘", "현재 GA 소속변경 이력 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_agent_compliance
display_name: GA 설계사 준법정보 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 준법정보 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 준법정보 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 준법정보 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 준법정보 조회 정보를 보여줘", "GA 설계사 준법정보 조회 결과를 확인해줘", "현재 GA 설계사 준법정보 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_agent_education
display_name: GA 설계사 교육이력 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 교육이력 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 교육이력 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 교육이력 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 교육이력 조회 정보를 보여줘", "GA 설계사 교육이력 조회 결과를 확인해줘", "현재 GA 설계사 교육이력 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_agent_license
display_name: GA 설계사 자격정보 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 자격정보 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 자격정보 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 자격정보 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 자격정보 조회 정보를 보여줘", "GA 설계사 자격정보 조회 결과를 확인해줘", "현재 GA 설계사 자격정보 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_agent_profile
display_name: GA 설계사 기본정보 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 기본정보 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 기본정보 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 기본정보 조회 정보를 보여줘", "GA 설계사 기본정보 조회 결과를 확인해줘", "현재 GA 설계사 기본정보 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_appointment_status
display_name: GA 설계사 위촉상태 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 위촉상태 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 위촉상태 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 위촉상태 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 위촉상태 조회 정보를 보여줘", "GA 설계사 위촉상태 조회 결과를 확인해줘", "현재 GA 설계사 위촉상태 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_branch_list
display_name: GA 지점목록 조회
version: 1.0.0
category_key: agt
description:
function: GA 지점목록 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 지점목록 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 지점목록 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 지점목록 조회 정보를 보여줘", "GA 지점목록 조회 결과를 확인해줘", "현재 GA 지점목록 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_campaign
display_name: GA 영업 캠페인 조회
version: 1.0.0
category_key: agt
description:
function: GA 영업 캠페인 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 영업 캠페인 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 영업 캠페인 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 영업 캠페인 조회 정보를 보여줘", "GA 영업 캠페인 조회 결과를 확인해줘", "현재 GA 영업 캠페인 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_claim_support
display_name: GA 보험금 청구지원 현황 조회
version: 1.0.0
category_key: agt
description:
function: GA 보험금 청구지원 현황 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 보험금 청구지원 현황 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 보험금 청구지원 현황 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 보험금 청구지원 현황 조회 정보를 보여줘", "GA 보험금 청구지원 현황 조회 결과를 확인해줘", "현재 GA 보험금 청구지원 현황 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_commission_grade
display_name: GA 설계사 수수료등급 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 수수료등급 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 수수료등급 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 수수료등급 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 수수료등급 조회 정보를 보여줘", "GA 설계사 수수료등급 조회 결과를 확인해줘", "현재 GA 설계사 수수료등급 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_commission_summary
display_name: GA 설계사 수수료 요약 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 수수료 요약 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 수수료 요약 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 수수료 요약 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 수수료 요약 조회 정보를 보여줘", "GA 설계사 수수료 요약 조회 결과를 확인해줘", "현재 GA 설계사 수수료 요약 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_contract_count
display_name: GA 설계사 계약건수 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 계약건수 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 계약건수 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 계약건수 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 계약건수 조회 정보를 보여줘", "GA 설계사 계약건수 조회 결과를 확인해줘", "현재 GA 설계사 계약건수 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_customer_assignment
display_name: GA 설계사 고객배정 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 고객배정 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 고객배정 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 고객배정 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 고객배정 조회 정보를 보여줘", "GA 설계사 고객배정 조회 결과를 확인해줘", "현재 GA 설계사 고객배정 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_ga_profile
display_name: GA 조직 기본정보 조회
version: 1.0.0
category_key: agt
description:
function: GA 조직 기본정보 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 조직 기본정보 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 조직 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 조직 기본정보 조회 정보를 보여줘", "GA 조직 기본정보 조회 결과를 확인해줘", "현재 GA 조직 기본정보 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_notice_list
display_name: GA 설계사 공지목록 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 공지목록 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 공지목록 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 공지목록 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 공지목록 조회 정보를 보여줘", "GA 설계사 공지목록 조회 결과를 확인해줘", "현재 GA 설계사 공지목록 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_organization_agent_list
display_name: GA 소속 설계사 목록 조회
version: 1.0.0
category_key: agt
description:
function: GA 소속 설계사 목록 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 소속 설계사 목록 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 소속 설계사 목록 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 소속 설계사 목록 조회 정보를 보여줘", "GA 소속 설계사 목록 조회 결과를 확인해줘", "현재 GA 소속 설계사 목록 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_organization_manager
display_name: GA 조직 책임자 조회
version: 1.0.0
category_key: agt
description:
function: GA 조직 책임자 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 조직 책임자 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 조직 책임자 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 조직 책임자 조회 정보를 보여줘", "GA 조직 책임자 조회 결과를 확인해줘", "현재 GA 조직 책임자 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_organization_tree
display_name: GA 조직도 조회
version: 1.0.0
category_key: agt
description:
function: GA 조직도 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 조직도 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 조직도 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 조직도 조회 정보를 보여줘", "GA 조직도 조회 결과를 확인해줘", "현재 GA 조직도 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_persistency_rate
display_name: GA 설계사 계약유지율 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 계약유지율 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 계약유지율 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 계약유지율 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 계약유지율 조회 정보를 보여줘", "GA 설계사 계약유지율 조회 결과를 확인해줘", "현재 GA 설계사 계약유지율 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_premium_summary
display_name: GA 설계사 보험료 실적 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 보험료 실적 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 보험료 실적 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 보험료 실적 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 보험료 실적 조회 정보를 보여줘", "GA 설계사 보험료 실적 조회 결과를 확인해줘", "현재 GA 설계사 보험료 실적 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_production_summary
display_name: GA 설계사 신계약 실적 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 신계약 실적 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 신계약 실적 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 신계약 실적 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 신계약 실적 조회 정보를 보여줘", "GA 설계사 신계약 실적 조회 결과를 확인해줘", "현재 GA 설계사 신계약 실적 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_sales_area
display_name: GA 영업지역 조회
version: 1.0.0
category_key: agt
description:
function: GA 영업지역 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 영업지역 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 영업지역 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 영업지역 조회 정보를 보여줘", "GA 영업지역 조회 결과를 확인해줘", "현재 GA 영업지역 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_support_contact
display_name: GA 업무지원 연락처 조회
version: 1.0.0
category_key: agt
description:
function: GA 업무지원 연락처 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 업무지원 연락처 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 업무지원 연락처 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 업무지원 연락처 조회 정보를 보여줘", "GA 업무지원 연락처 조회 결과를 확인해줘", "현재 GA 업무지원 연락처 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: agt_task_list
display_name: GA 설계사 업무목록 조회
version: 1.0.0
category_key: agt
description:
function: GA 설계사 업무목록 조회 정보를 조회합니다.
when_to_use: GA·설계사 업무에서 GA 설계사 업무목록 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: GA 설계사 업무목록 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["GA 설계사 업무목록 조회 정보를 보여줘", "GA 설계사 업무목록 조회 결과를 확인해줘", "현재 GA 설계사 업무목록 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
agentId: {type: string, description: 설계사번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
organizationId: {type: string, description: GA 조직번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
additionalProperties: false
tags: [agt, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_claim_accident
display_name: 보험사고 정보 조회
version: 1.0.0
category_key: pro
description:
function: 보험사고 정보 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험사고 정보 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험사고 정보 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험사고 정보 조회 정보를 보여줘", "보험사고 정보 조회 결과를 확인해줘", "현재 보험사고 정보 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_claim_beneficiary
display_name: 보험금 수익자 조회
version: 1.0.0
category_key: pro
description:
function: 보험금 수익자 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험금 수익자 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험금 수익자 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험금 수익자 조회 정보를 보여줘", "보험금 수익자 조회 결과를 확인해줘", "현재 보험금 수익자 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_claim_contact
display_name: 보험금 청구 담당자 조회
version: 1.0.0
category_key: pro
description:
function: 보험금 청구 담당자 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험금 청구 담당자 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험금 청구 담당자 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험금 청구 담당자 조회 정보를 보여줘", "보험금 청구 담당자 조회 결과를 확인해줘", "현재 보험금 청구 담당자 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_claim_documents
display_name: 보험금 청구서류 조회
version: 1.0.0
category_key: pro
description:
function: 보험금 청구서류 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험금 청구서류 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험금 청구서류 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험금 청구서류 조회 정보를 보여줘", "보험금 청구서류 조회 결과를 확인해줘", "현재 보험금 청구서류 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_claim_eligibility
display_name: 보험금 청구 가능여부 조회
version: 1.0.0
category_key: pro
description:
function: 보험금 청구 가능여부 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험금 청구 가능여부 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험금 청구 가능여부 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험금 청구 가능여부 조회 정보를 보여줘", "보험금 청구 가능여부 조회 결과를 확인해줘", "현재 보험금 청구 가능여부 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_claim_history
display_name: 보험금 청구이력 조회
version: 1.0.0
category_key: pro
description:
function: 보험금 청구이력 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험금 청구이력 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험금 청구이력 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험금 청구이력 조회 정보를 보여줘", "보험금 청구이력 조회 결과를 확인해줘", "현재 보험금 청구이력 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_claim_payment
display_name: 보험금 지급내역 조회
version: 1.0.0
category_key: pro
description:
function: 보험금 지급내역 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험금 지급내역 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험금 지급내역 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험금 지급내역 조회 정보를 보여줘", "보험금 지급내역 조회 결과를 확인해줘", "현재 보험금 지급내역 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_claim_status
display_name: 보험금 청구상태 조회
version: 1.0.0
category_key: pro
description:
function: 보험금 청구상태 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험금 청구상태 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험금 청구상태 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험금 청구상태 조회 정보를 보여줘", "보험금 청구상태 조회 결과를 확인해줘", "현재 보험금 청구상태 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_contract_beneficiary
display_name: 보험계약 수익자 조회
version: 1.0.0
category_key: pro
description:
function: 보험계약 수익자 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험계약 수익자 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험계약 수익자 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험계약 수익자 조회 정보를 보여줘", "보험계약 수익자 조회 결과를 확인해줘", "현재 보험계약 수익자 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_contract_coverage
display_name: 보험계약 보장내역 조회
version: 1.0.0
category_key: pro
description:
function: 보험계약 보장내역 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험계약 보장내역 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험계약 보장내역 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험계약 보장내역 조회 정보를 보여줘", "보험계약 보장내역 조회 결과를 확인해줘", "현재 보험계약 보장내역 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_contract_detail
display_name: 보험계약 상세 조회
version: 1.0.0
category_key: pro
description:
function: 보험계약 상세 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험계약 상세 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험계약 상세 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험계약 상세 조회 정보를 보여줘", "보험계약 상세 조회 결과를 확인해줘", "현재 보험계약 상세 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_contract_list
display_name: 보험계약 목록 조회
version: 1.0.0
category_key: pro
description:
function: 보험계약 목록 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험계약 목록 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험계약 목록 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험계약 목록 조회 정보를 보여줘", "보험계약 목록 조회 결과를 확인해줘", "현재 보험계약 목록 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_contract_loan_status
display_name: 보험계약 대출현황 조회
version: 1.0.0
category_key: pro
description:
function: 보험계약 대출현황 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험계약 대출현황 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험계약 대출현황 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험계약 대출현황 조회 정보를 보여줘", "보험계약 대출현황 조회 결과를 확인해줘", "현재 보험계약 대출현황 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_contract_payment_status
display_name: 보험료 납입상태 조회
version: 1.0.0
category_key: pro
description:
function: 보험료 납입상태 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험료 납입상태 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험료 납입상태 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험료 납입상태 조회 정보를 보여줘", "보험료 납입상태 조회 결과를 확인해줘", "현재 보험료 납입상태 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

View File

@@ -1,24 +0,0 @@
name: pro_contract_premium
display_name: 보험계약 보험료 조회
version: 1.0.0
category_key: pro
description:
function: 보험계약 보험료 조회 정보를 조회합니다.
when_to_use: 고객·보험계약 업무에서 보험계약 보험료 조회 정보가 필요할 때 사용합니다.
when_not_to_use: 정보 변경, 승인 또는 실제 업무처리에는 사용하지 않습니다.
io_limits: 입력 식별자에 대한 모의 조회 데이터만 반환하며 외부 시스템을 변경하지 않습니다.
display_description: 보험계약 보험료 조회 정보를 안전한 모의 데이터로 제공합니다.
example_queries: ["보험계약 보험료 조회 정보를 보여줘", "보험계약 보험료 조회 결과를 확인해줘", "현재 보험계약 보험료 조회 내용을 알려줘"]
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
subjectId: {type: string, description: 고객번호 또는 계약번호, pattern: "^[A-Za-z0-9_-]{3,30}$"}
queryDate: {type: string, description: 조회 기준일, pattern: "^\\d{4}-\\d{2}-\\d{2}$"}
detailLevel: {type: string, description: 조회 상세 수준, enum: [SUMMARY, DETAIL]}
additionalProperties: false
tags: [pro, 조회, mock]
required_env_keys: []
owner_org: MCP_TOOL

Some files were not shown because too many files have changed in this diff Show More