Initial commit

This commit is contained in:
jade
2026-08-14 18:16:14 +09:00
commit 22f4fab58d
656 changed files with 22614 additions and 0 deletions

7
dap-was-pro/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM eclipse-temurin:21-jre-alpine
WORKDIR /app
RUN apk add --no-cache tzdata
ENV TZ=Asia/Seoul
COPY dap-was-pro/build/libs/*-SNAPSHOT.jar app.jar
EXPOSE 8085
ENTRYPOINT ["java", "-jar", "app.jar"]

9
dap-was-pro/build.gradle Normal file
View File

@@ -0,0 +1,9 @@
plugins {
// Spring Boot 3.5.11 version is managed by the root build.gradle.
id 'org.springframework.boot'
}
dependencies {
// Shared MCP, Glow integration, validation, logging, Lombok and MapStruct configuration.
implementation project(':dap-was-lib')
}

View File

@@ -0,0 +1,16 @@
package io.shinhanlife.dap.mcc.biz.agt.dto;
import lombok.Data;
import org.springaicommunity.mcp.annotation.McpToolParam;
@Data
public class AgentToolRequest {
@McpToolParam(description = "설계사번호", required = false)
private String agentId;
@McpToolParam(description = "GA 조직번호", required = false)
private String organizationId;
@McpToolParam(description = "조회 기준일(YYYY-MM-DD)", required = false)
private String queryDate;
}

View File

@@ -0,0 +1,15 @@
package io.shinhanlife.dap.mcc.biz.agt.dto;
import java.util.List;
import lombok.Data;
@Data
public class AgentToolResponse {
private String toolName;
private String category;
private String referenceId;
private String status;
private String summary;
private String asOfDate;
private List<String> details;
}

View File

@@ -0,0 +1,40 @@
package io.shinhanlife.dap.mcc.biz.agt.usecase;
import io.shinhanlife.dap.lib.annotation.GrowToolHint;
import io.shinhanlife.dap.mcc.biz.agt.dto.AgentToolRequest;
import io.shinhanlife.dap.mcc.biz.agt.dto.AgentToolResponse;
import org.springaicommunity.mcp.annotation.McpTool;
public interface AgentInquiryUseCase {
@McpTool(name = "agt_agent_profile", title = "GA 설계사 기본정보 조회", description = "GA 설계사 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_AGENT_PROFILE")
AgentToolResponse getAgentProfile(AgentToolRequest request);
@McpTool(name = "agt_appointment_status", title = "GA 설계사 위촉상태 조회", description = "GA 설계사 위촉상태 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_APPOINTMENT_STATUS")
AgentToolResponse getAppointmentStatus(AgentToolRequest request);
@McpTool(name = "agt_agent_license", title = "GA 설계사 자격정보 조회", description = "GA 설계사 자격정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_AGENT_LICENSE")
AgentToolResponse getAgentLicense(AgentToolRequest request);
@McpTool(name = "agt_commission_grade", title = "GA 설계사 수수료등급 조회", description = "GA 설계사 수수료등급 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_COMMISSION_GRADE")
AgentToolResponse getCommissionGrade(AgentToolRequest request);
@McpTool(name = "agt_agent_education", title = "GA 설계사 교육이력 조회", description = "GA 설계사 교육이력 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_AGENT_EDUCATION")
AgentToolResponse getAgentEducation(AgentToolRequest request);
@McpTool(name = "agt_agent_compliance", title = "GA 설계사 준법정보 조회", description = "GA 설계사 준법정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_AGENT_COMPLIANCE")
AgentToolResponse getAgentCompliance(AgentToolRequest request);
@McpTool(name = "agt_customer_assignment", title = "GA 설계사 고객배정 조회", description = "GA 설계사 고객배정 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_CUSTOMER_ASSIGNMENT")
AgentToolResponse getCustomerAssignment(AgentToolRequest request);
@McpTool(name = "agt_activity_status", title = "GA 설계사 활동상태 조회", description = "GA 설계사 활동상태 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_ACTIVITY_STATUS")
AgentToolResponse getActivityStatus(AgentToolRequest request);
}

View File

@@ -0,0 +1,44 @@
package io.shinhanlife.dap.mcc.biz.agt.usecase;
import io.shinhanlife.dap.lib.annotation.GrowToolHint;
import io.shinhanlife.dap.mcc.biz.agt.dto.AgentToolRequest;
import io.shinhanlife.dap.mcc.biz.agt.dto.AgentToolResponse;
import org.springaicommunity.mcp.annotation.McpTool;
public interface AgentPerformanceUseCase {
@McpTool(name = "agt_production_summary", title = "GA 설계사 신계약 실적 조회", description = "GA 설계사 신계약 실적 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_PRODUCTION_SUMMARY")
AgentToolResponse getProductionSummary(AgentToolRequest request);
@McpTool(name = "agt_contract_count", title = "GA 설계사 계약건수 조회", description = "GA 설계사 계약건수 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_CONTRACT_COUNT")
AgentToolResponse getContractCount(AgentToolRequest request);
@McpTool(name = "agt_premium_summary", title = "GA 설계사 보험료 실적 조회", description = "GA 설계사 보험료 실적 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_PREMIUM_SUMMARY")
AgentToolResponse getPremiumSummary(AgentToolRequest request);
@McpTool(name = "agt_persistency_rate", title = "GA 설계사 계약유지율 조회", description = "GA 설계사 계약유지율 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_PERSISTENCY_RATE")
AgentToolResponse getPersistencyRate(AgentToolRequest request);
@McpTool(name = "agt_claim_support", title = "GA 보험금 청구지원 현황 조회", description = "GA 보험금 청구지원 현황 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_CLAIM_SUPPORT")
AgentToolResponse getClaimSupport(AgentToolRequest request);
@McpTool(name = "agt_commission_summary", title = "GA 설계사 수수료 요약 조회", description = "GA 설계사 수수료 요약 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_COMMISSION_SUMMARY")
AgentToolResponse getCommissionSummary(AgentToolRequest request);
@McpTool(name = "agt_campaign", title = "GA 영업 캠페인 조회", description = "GA 영업 캠페인 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_CAMPAIGN")
AgentToolResponse getCampaign(AgentToolRequest request);
@McpTool(name = "agt_task_list", title = "GA 설계사 업무목록 조회", description = "GA 설계사 업무목록 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_TASK_LIST")
AgentToolResponse getTaskList(AgentToolRequest request);
@McpTool(name = "agt_notice_list", title = "GA 설계사 공지목록 조회", description = "GA 설계사 공지목록 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_NOTICE_LIST")
AgentToolResponse getNoticeList(AgentToolRequest request);
}

View File

@@ -0,0 +1,40 @@
package io.shinhanlife.dap.mcc.biz.agt.usecase;
import io.shinhanlife.dap.lib.annotation.GrowToolHint;
import io.shinhanlife.dap.mcc.biz.agt.dto.AgentToolRequest;
import io.shinhanlife.dap.mcc.biz.agt.dto.AgentToolResponse;
import org.springaicommunity.mcp.annotation.McpTool;
public interface GaOrganizationUseCase {
@McpTool(name = "agt_ga_profile", title = "GA 조직 기본정보 조회", description = "GA 조직 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_GA_PROFILE")
AgentToolResponse getGaProfile(AgentToolRequest request);
@McpTool(name = "agt_branch_list", title = "GA 지점목록 조회", description = "GA 지점목록 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_BRANCH_LIST")
AgentToolResponse getBranchList(AgentToolRequest request);
@McpTool(name = "agt_organization_tree", title = "GA 조직도 조회", description = "GA 조직도 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_ORGANIZATION_TREE")
AgentToolResponse getOrganizationTree(AgentToolRequest request);
@McpTool(name = "agt_organization_manager", title = "GA 조직 책임자 조회", description = "GA 조직 책임자 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_ORGANIZATION_MANAGER")
AgentToolResponse getOrganizationManager(AgentToolRequest request);
@McpTool(name = "agt_organization_agent_list", title = "GA 소속 설계사 목록 조회", description = "GA 소속 설계사 목록 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_ORGANIZATION_AGENT_LIST")
AgentToolResponse getOrganizationAgentList(AgentToolRequest request);
@McpTool(name = "agt_sales_area", title = "GA 영업지역 조회", description = "GA 영업지역 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_SALES_AREA")
AgentToolResponse getSalesArea(AgentToolRequest request);
@McpTool(name = "agt_affiliation_history", title = "GA 소속변경 이력 조회", description = "GA 소속변경 이력 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_AFFILIATION_HISTORY")
AgentToolResponse getAffiliationHistory(AgentToolRequest request);
@McpTool(name = "agt_support_contact", title = "GA 업무지원 연락처 조회", description = "GA 업무지원 연락처 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "agt", mappingId = "DIRECT_AGT_SUPPORT_CONTACT")
AgentToolResponse getSupportContact(AgentToolRequest request);
}

View File

@@ -0,0 +1,67 @@
package io.shinhanlife.dap.mcc.biz.agt.usecase.impl;
import io.shinhanlife.dap.mcc.biz.agt.dto.AgentToolRequest;
import io.shinhanlife.dap.mcc.biz.agt.dto.AgentToolResponse;
import io.shinhanlife.dap.mcc.biz.agt.usecase.AgentInquiryUseCase;
import java.util.List;
import org.springframework.stereotype.Service;
@Service
public class AgentInquiryUseCaseImpl implements AgentInquiryUseCase {
@Override
public AgentToolResponse getAgentProfile(AgentToolRequest request) {
return mockResponse(request, "agt_agent_profile", "GA 설계사 기본정보 조회");
}
@Override
public AgentToolResponse getAppointmentStatus(AgentToolRequest request) {
return mockResponse(request, "agt_appointment_status", "GA 설계사 위촉상태 조회");
}
@Override
public AgentToolResponse getAgentLicense(AgentToolRequest request) {
return mockResponse(request, "agt_agent_license", "GA 설계사 자격정보 조회");
}
@Override
public AgentToolResponse getCommissionGrade(AgentToolRequest request) {
return mockResponse(request, "agt_commission_grade", "GA 설계사 수수료등급 조회");
}
@Override
public AgentToolResponse getAgentEducation(AgentToolRequest request) {
return mockResponse(request, "agt_agent_education", "GA 설계사 교육이력 조회");
}
@Override
public AgentToolResponse getAgentCompliance(AgentToolRequest request) {
return mockResponse(request, "agt_agent_compliance", "GA 설계사 준법정보 조회");
}
@Override
public AgentToolResponse getCustomerAssignment(AgentToolRequest request) {
return mockResponse(request, "agt_customer_assignment", "GA 설계사 고객배정 조회");
}
@Override
public AgentToolResponse getActivityStatus(AgentToolRequest request) {
return mockResponse(request, "agt_activity_status", "GA 설계사 활동상태 조회");
}
private AgentToolResponse mockResponse(AgentToolRequest request, String toolName, String title) {
AgentToolResponse response = new AgentToolResponse();
response.setToolName(toolName);
response.setCategory("AGT");
response.setReferenceId(request != null && hasText(request.getAgentId()) ? request.getAgentId()
: request != null && hasText(request.getOrganizationId()) ? request.getOrganizationId() : "AGT-000001");
response.setStatus("정상");
response.setSummary(title + " 결과");
response.setAsOfDate(request != null && hasText(request.getQueryDate()) ? request.getQueryDate() : "2026-08-14");
response.setDetails(List.of(title + " 모의 상세정보", "외부 시스템을 변경하지 않는 조회 결과"));
return response;
}
private boolean hasText(String value) {
return value != null && !value.isBlank();
}
}

View File

@@ -0,0 +1,72 @@
package io.shinhanlife.dap.mcc.biz.agt.usecase.impl;
import io.shinhanlife.dap.mcc.biz.agt.dto.AgentToolRequest;
import io.shinhanlife.dap.mcc.biz.agt.dto.AgentToolResponse;
import io.shinhanlife.dap.mcc.biz.agt.usecase.AgentPerformanceUseCase;
import java.util.List;
import org.springframework.stereotype.Service;
@Service
public class AgentPerformanceUseCaseImpl implements AgentPerformanceUseCase {
@Override
public AgentToolResponse getProductionSummary(AgentToolRequest request) {
return mockResponse(request, "agt_production_summary", "GA 설계사 신계약 실적 조회");
}
@Override
public AgentToolResponse getContractCount(AgentToolRequest request) {
return mockResponse(request, "agt_contract_count", "GA 설계사 계약건수 조회");
}
@Override
public AgentToolResponse getPremiumSummary(AgentToolRequest request) {
return mockResponse(request, "agt_premium_summary", "GA 설계사 보험료 실적 조회");
}
@Override
public AgentToolResponse getPersistencyRate(AgentToolRequest request) {
return mockResponse(request, "agt_persistency_rate", "GA 설계사 계약유지율 조회");
}
@Override
public AgentToolResponse getClaimSupport(AgentToolRequest request) {
return mockResponse(request, "agt_claim_support", "GA 보험금 청구지원 현황 조회");
}
@Override
public AgentToolResponse getCommissionSummary(AgentToolRequest request) {
return mockResponse(request, "agt_commission_summary", "GA 설계사 수수료 요약 조회");
}
@Override
public AgentToolResponse getCampaign(AgentToolRequest request) {
return mockResponse(request, "agt_campaign", "GA 영업 캠페인 조회");
}
@Override
public AgentToolResponse getTaskList(AgentToolRequest request) {
return mockResponse(request, "agt_task_list", "GA 설계사 업무목록 조회");
}
@Override
public AgentToolResponse getNoticeList(AgentToolRequest request) {
return mockResponse(request, "agt_notice_list", "GA 설계사 공지목록 조회");
}
private AgentToolResponse mockResponse(AgentToolRequest request, String toolName, String title) {
AgentToolResponse response = new AgentToolResponse();
response.setToolName(toolName);
response.setCategory("AGT");
response.setReferenceId(request != null && hasText(request.getAgentId()) ? request.getAgentId()
: request != null && hasText(request.getOrganizationId()) ? request.getOrganizationId() : "AGT-000001");
response.setStatus("정상");
response.setSummary(title + " 결과");
response.setAsOfDate(request != null && hasText(request.getQueryDate()) ? request.getQueryDate() : "2026-08-14");
response.setDetails(List.of(title + " 모의 상세정보", "외부 시스템을 변경하지 않는 조회 결과"));
return response;
}
private boolean hasText(String value) {
return value != null && !value.isBlank();
}
}

View File

@@ -0,0 +1,67 @@
package io.shinhanlife.dap.mcc.biz.agt.usecase.impl;
import io.shinhanlife.dap.mcc.biz.agt.dto.AgentToolRequest;
import io.shinhanlife.dap.mcc.biz.agt.dto.AgentToolResponse;
import io.shinhanlife.dap.mcc.biz.agt.usecase.GaOrganizationUseCase;
import java.util.List;
import org.springframework.stereotype.Service;
@Service
public class GaOrganizationUseCaseImpl implements GaOrganizationUseCase {
@Override
public AgentToolResponse getGaProfile(AgentToolRequest request) {
return mockResponse(request, "agt_ga_profile", "GA 조직 기본정보 조회");
}
@Override
public AgentToolResponse getBranchList(AgentToolRequest request) {
return mockResponse(request, "agt_branch_list", "GA 지점목록 조회");
}
@Override
public AgentToolResponse getOrganizationTree(AgentToolRequest request) {
return mockResponse(request, "agt_organization_tree", "GA 조직도 조회");
}
@Override
public AgentToolResponse getOrganizationManager(AgentToolRequest request) {
return mockResponse(request, "agt_organization_manager", "GA 조직 책임자 조회");
}
@Override
public AgentToolResponse getOrganizationAgentList(AgentToolRequest request) {
return mockResponse(request, "agt_organization_agent_list", "GA 소속 설계사 목록 조회");
}
@Override
public AgentToolResponse getSalesArea(AgentToolRequest request) {
return mockResponse(request, "agt_sales_area", "GA 영업지역 조회");
}
@Override
public AgentToolResponse getAffiliationHistory(AgentToolRequest request) {
return mockResponse(request, "agt_affiliation_history", "GA 소속변경 이력 조회");
}
@Override
public AgentToolResponse getSupportContact(AgentToolRequest request) {
return mockResponse(request, "agt_support_contact", "GA 업무지원 연락처 조회");
}
private AgentToolResponse mockResponse(AgentToolRequest request, String toolName, String title) {
AgentToolResponse response = new AgentToolResponse();
response.setToolName(toolName);
response.setCategory("AGT");
response.setReferenceId(request != null && hasText(request.getAgentId()) ? request.getAgentId()
: request != null && hasText(request.getOrganizationId()) ? request.getOrganizationId() : "AGT-000001");
response.setStatus("정상");
response.setSummary(title + " 결과");
response.setAsOfDate(request != null && hasText(request.getQueryDate()) ? request.getQueryDate() : "2026-08-14");
response.setDetails(List.of(title + " 모의 상세정보", "외부 시스템을 변경하지 않는 조회 결과"));
return response;
}
private boolean hasText(String value) {
return value != null && !value.isBlank();
}
}

View File

@@ -0,0 +1,16 @@
package io.shinhanlife.dap.mcc.biz.pro.dto;
import lombok.Data;
import org.springaicommunity.mcp.annotation.McpToolParam;
@Data
public class ProductToolRequest {
@McpToolParam(description = "고객번호 또는 계약번호", required = false)
private String subjectId;
@McpToolParam(description = "조회 기준일(YYYY-MM-DD)", required = false)
private String queryDate;
@McpToolParam(description = "조회 상세 수준", required = false)
private String detailLevel;
}

View File

@@ -0,0 +1,15 @@
package io.shinhanlife.dap.mcc.biz.pro.dto;
import java.util.List;
import lombok.Data;
@Data
public class ProductToolResponse {
private String toolName;
private String category;
private String referenceId;
private String status;
private String summary;
private String asOfDate;
private List<String> details;
}

View File

@@ -0,0 +1,40 @@
package io.shinhanlife.dap.mcc.biz.pro.usecase;
import io.shinhanlife.dap.lib.annotation.GrowToolHint;
import io.shinhanlife.dap.mcc.biz.pro.dto.ProductToolRequest;
import io.shinhanlife.dap.mcc.biz.pro.dto.ProductToolResponse;
import org.springaicommunity.mcp.annotation.McpTool;
public interface ClaimInquiryUseCase {
@McpTool(name = "pro_claim_eligibility", title = "보험금 청구 가능여부 조회", description = "보험금 청구 가능여부 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_ELIGIBILITY")
ProductToolResponse getClaimEligibility(ProductToolRequest request);
@McpTool(name = "pro_claim_history", title = "보험금 청구이력 조회", description = "보험금 청구이력 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_HISTORY")
ProductToolResponse getClaimHistory(ProductToolRequest request);
@McpTool(name = "pro_claim_status", title = "보험금 청구상태 조회", description = "보험금 청구상태 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_STATUS")
ProductToolResponse getClaimStatus(ProductToolRequest request);
@McpTool(name = "pro_claim_documents", title = "보험금 청구서류 조회", description = "보험금 청구서류 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_DOCUMENTS")
ProductToolResponse getClaimDocuments(ProductToolRequest request);
@McpTool(name = "pro_claim_payment", title = "보험금 지급내역 조회", description = "보험금 지급내역 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_PAYMENT")
ProductToolResponse getClaimPayment(ProductToolRequest request);
@McpTool(name = "pro_claim_accident", title = "보험사고 정보 조회", description = "보험사고 정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_ACCIDENT")
ProductToolResponse getClaimAccident(ProductToolRequest request);
@McpTool(name = "pro_claim_beneficiary", title = "보험금 수익자 조회", description = "보험금 수익자 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_BENEFICIARY")
ProductToolResponse getClaimBeneficiary(ProductToolRequest request);
@McpTool(name = "pro_claim_contact", title = "보험금 청구 담당자 조회", description = "보험금 청구 담당자 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CLAIM_CONTACT")
ProductToolResponse getClaimContact(ProductToolRequest request);
}

View File

@@ -0,0 +1,44 @@
package io.shinhanlife.dap.mcc.biz.pro.usecase;
import io.shinhanlife.dap.lib.annotation.GrowToolHint;
import io.shinhanlife.dap.mcc.biz.pro.dto.ProductToolRequest;
import io.shinhanlife.dap.mcc.biz.pro.dto.ProductToolResponse;
import org.springaicommunity.mcp.annotation.McpTool;
public interface ContractInquiryUseCase {
@McpTool(name = "pro_contract_list", title = "보험계약 목록 조회", description = "보험계약 목록 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_LIST")
ProductToolResponse getContractList(ProductToolRequest request);
@McpTool(name = "pro_contract_detail", title = "보험계약 상세 조회", description = "보험계약 상세 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_DETAIL")
ProductToolResponse getContractDetail(ProductToolRequest request);
@McpTool(name = "pro_contract_coverage", title = "보험계약 보장내역 조회", description = "보험계약 보장내역 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_COVERAGE")
ProductToolResponse getContractCoverage(ProductToolRequest request);
@McpTool(name = "pro_contract_premium", title = "보험계약 보험료 조회", description = "보험계약 보험료 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_PREMIUM")
ProductToolResponse getContractPremium(ProductToolRequest request);
@McpTool(name = "pro_contract_payment_status", title = "보험료 납입상태 조회", description = "보험료 납입상태 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_PAYMENT_STATUS")
ProductToolResponse getContractPaymentStatus(ProductToolRequest request);
@McpTool(name = "pro_contract_beneficiary", title = "보험계약 수익자 조회", description = "보험계약 수익자 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_BENEFICIARY")
ProductToolResponse getContractBeneficiary(ProductToolRequest request);
@McpTool(name = "pro_contract_surrender_value", title = "보험계약 해지환급금 조회", description = "보험계약 해지환급금 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_SURRENDER_VALUE")
ProductToolResponse getContractSurrenderValue(ProductToolRequest request);
@McpTool(name = "pro_contract_loan_status", title = "보험계약 대출현황 조회", description = "보험계약 대출현황 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_LOAN_STATUS")
ProductToolResponse getContractLoanStatus(ProductToolRequest request);
@McpTool(name = "pro_contract_rider_list", title = "보험계약 특약목록 조회", description = "보험계약 특약목록 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CONTRACT_RIDER_LIST")
ProductToolResponse getContractRiderList(ProductToolRequest request);
}

View File

@@ -0,0 +1,40 @@
package io.shinhanlife.dap.mcc.biz.pro.usecase;
import io.shinhanlife.dap.lib.annotation.GrowToolHint;
import io.shinhanlife.dap.mcc.biz.pro.dto.ProductToolRequest;
import io.shinhanlife.dap.mcc.biz.pro.dto.ProductToolResponse;
import org.springaicommunity.mcp.annotation.McpTool;
public interface CustomerInquiryUseCase {
@McpTool(name = "pro_customer_profile", title = "고객 기본정보 조회", description = "고객 기본정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_PROFILE")
ProductToolResponse getCustomerProfile(ProductToolRequest request);
@McpTool(name = "pro_customer_contact", title = "고객 연락처 조회", description = "고객 연락처 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_CONTACT")
ProductToolResponse getCustomerContact(ProductToolRequest request);
@McpTool(name = "pro_customer_consent", title = "고객 동의정보 조회", description = "고객 동의정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_CONSENT")
ProductToolResponse getCustomerConsent(ProductToolRequest request);
@McpTool(name = "pro_customer_identity", title = "고객 본인확인정보 조회", description = "고객 본인확인정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_IDENTITY")
ProductToolResponse getCustomerIdentity(ProductToolRequest request);
@McpTool(name = "pro_customer_address", title = "고객 주소정보 조회", description = "고객 주소정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_ADDRESS")
ProductToolResponse getCustomerAddress(ProductToolRequest request);
@McpTool(name = "pro_customer_occupation", title = "고객 직업정보 조회", description = "고객 직업정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_OCCUPATION")
ProductToolResponse getCustomerOccupation(ProductToolRequest request);
@McpTool(name = "pro_customer_family", title = "고객 가족정보 조회", description = "고객 가족정보 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_FAMILY")
ProductToolResponse getCustomerFamily(ProductToolRequest request);
@McpTool(name = "pro_customer_risk_grade", title = "고객 위험등급 조회", description = "고객 위험등급 조회 정보를 안전한 모의 데이터로 제공합니다.")
@GrowToolHint(requiresApproval = false, categoryKey = "pro", mappingId = "DIRECT_PRO_CUSTOMER_RISK_GRADE")
ProductToolResponse getCustomerRiskGrade(ProductToolRequest request);
}

View File

@@ -0,0 +1,66 @@
package io.shinhanlife.dap.mcc.biz.pro.usecase.impl;
import io.shinhanlife.dap.mcc.biz.pro.dto.ProductToolRequest;
import io.shinhanlife.dap.mcc.biz.pro.dto.ProductToolResponse;
import io.shinhanlife.dap.mcc.biz.pro.usecase.ClaimInquiryUseCase;
import java.util.List;
import org.springframework.stereotype.Service;
@Service
public class ClaimInquiryUseCaseImpl implements ClaimInquiryUseCase {
@Override
public ProductToolResponse getClaimEligibility(ProductToolRequest request) {
return mockResponse(request, "pro_claim_eligibility", "보험금 청구 가능여부 조회");
}
@Override
public ProductToolResponse getClaimHistory(ProductToolRequest request) {
return mockResponse(request, "pro_claim_history", "보험금 청구이력 조회");
}
@Override
public ProductToolResponse getClaimStatus(ProductToolRequest request) {
return mockResponse(request, "pro_claim_status", "보험금 청구상태 조회");
}
@Override
public ProductToolResponse getClaimDocuments(ProductToolRequest request) {
return mockResponse(request, "pro_claim_documents", "보험금 청구서류 조회");
}
@Override
public ProductToolResponse getClaimPayment(ProductToolRequest request) {
return mockResponse(request, "pro_claim_payment", "보험금 지급내역 조회");
}
@Override
public ProductToolResponse getClaimAccident(ProductToolRequest request) {
return mockResponse(request, "pro_claim_accident", "보험사고 정보 조회");
}
@Override
public ProductToolResponse getClaimBeneficiary(ProductToolRequest request) {
return mockResponse(request, "pro_claim_beneficiary", "보험금 수익자 조회");
}
@Override
public ProductToolResponse getClaimContact(ProductToolRequest request) {
return mockResponse(request, "pro_claim_contact", "보험금 청구 담당자 조회");
}
private ProductToolResponse mockResponse(ProductToolRequest request, String toolName, String title) {
ProductToolResponse response = new ProductToolResponse();
response.setToolName(toolName);
response.setCategory("PRO");
response.setReferenceId(request != null && hasText(request.getSubjectId()) ? request.getSubjectId() : "CUST-000001");
response.setStatus("정상");
response.setSummary(title + " 결과");
response.setAsOfDate(request != null && hasText(request.getQueryDate()) ? request.getQueryDate() : "2026-08-14");
response.setDetails(List.of(title + " 모의 상세정보", "외부 시스템을 변경하지 않는 조회 결과"));
return response;
}
private boolean hasText(String value) {
return value != null && !value.isBlank();
}
}

View File

@@ -0,0 +1,71 @@
package io.shinhanlife.dap.mcc.biz.pro.usecase.impl;
import io.shinhanlife.dap.mcc.biz.pro.dto.ProductToolRequest;
import io.shinhanlife.dap.mcc.biz.pro.dto.ProductToolResponse;
import io.shinhanlife.dap.mcc.biz.pro.usecase.ContractInquiryUseCase;
import java.util.List;
import org.springframework.stereotype.Service;
@Service
public class ContractInquiryUseCaseImpl implements ContractInquiryUseCase {
@Override
public ProductToolResponse getContractList(ProductToolRequest request) {
return mockResponse(request, "pro_contract_list", "보험계약 목록 조회");
}
@Override
public ProductToolResponse getContractDetail(ProductToolRequest request) {
return mockResponse(request, "pro_contract_detail", "보험계약 상세 조회");
}
@Override
public ProductToolResponse getContractCoverage(ProductToolRequest request) {
return mockResponse(request, "pro_contract_coverage", "보험계약 보장내역 조회");
}
@Override
public ProductToolResponse getContractPremium(ProductToolRequest request) {
return mockResponse(request, "pro_contract_premium", "보험계약 보험료 조회");
}
@Override
public ProductToolResponse getContractPaymentStatus(ProductToolRequest request) {
return mockResponse(request, "pro_contract_payment_status", "보험료 납입상태 조회");
}
@Override
public ProductToolResponse getContractBeneficiary(ProductToolRequest request) {
return mockResponse(request, "pro_contract_beneficiary", "보험계약 수익자 조회");
}
@Override
public ProductToolResponse getContractSurrenderValue(ProductToolRequest request) {
return mockResponse(request, "pro_contract_surrender_value", "보험계약 해지환급금 조회");
}
@Override
public ProductToolResponse getContractLoanStatus(ProductToolRequest request) {
return mockResponse(request, "pro_contract_loan_status", "보험계약 대출현황 조회");
}
@Override
public ProductToolResponse getContractRiderList(ProductToolRequest request) {
return mockResponse(request, "pro_contract_rider_list", "보험계약 특약목록 조회");
}
private ProductToolResponse mockResponse(ProductToolRequest request, String toolName, String title) {
ProductToolResponse response = new ProductToolResponse();
response.setToolName(toolName);
response.setCategory("PRO");
response.setReferenceId(request != null && hasText(request.getSubjectId()) ? request.getSubjectId() : "CUST-000001");
response.setStatus("정상");
response.setSummary(title + " 결과");
response.setAsOfDate(request != null && hasText(request.getQueryDate()) ? request.getQueryDate() : "2026-08-14");
response.setDetails(List.of(title + " 모의 상세정보", "외부 시스템을 변경하지 않는 조회 결과"));
return response;
}
private boolean hasText(String value) {
return value != null && !value.isBlank();
}
}

View File

@@ -0,0 +1,66 @@
package io.shinhanlife.dap.mcc.biz.pro.usecase.impl;
import io.shinhanlife.dap.mcc.biz.pro.dto.ProductToolRequest;
import io.shinhanlife.dap.mcc.biz.pro.dto.ProductToolResponse;
import io.shinhanlife.dap.mcc.biz.pro.usecase.CustomerInquiryUseCase;
import java.util.List;
import org.springframework.stereotype.Service;
@Service
public class CustomerInquiryUseCaseImpl implements CustomerInquiryUseCase {
@Override
public ProductToolResponse getCustomerProfile(ProductToolRequest request) {
return mockResponse(request, "pro_customer_profile", "고객 기본정보 조회");
}
@Override
public ProductToolResponse getCustomerContact(ProductToolRequest request) {
return mockResponse(request, "pro_customer_contact", "고객 연락처 조회");
}
@Override
public ProductToolResponse getCustomerConsent(ProductToolRequest request) {
return mockResponse(request, "pro_customer_consent", "고객 동의정보 조회");
}
@Override
public ProductToolResponse getCustomerIdentity(ProductToolRequest request) {
return mockResponse(request, "pro_customer_identity", "고객 본인확인정보 조회");
}
@Override
public ProductToolResponse getCustomerAddress(ProductToolRequest request) {
return mockResponse(request, "pro_customer_address", "고객 주소정보 조회");
}
@Override
public ProductToolResponse getCustomerOccupation(ProductToolRequest request) {
return mockResponse(request, "pro_customer_occupation", "고객 직업정보 조회");
}
@Override
public ProductToolResponse getCustomerFamily(ProductToolRequest request) {
return mockResponse(request, "pro_customer_family", "고객 가족정보 조회");
}
@Override
public ProductToolResponse getCustomerRiskGrade(ProductToolRequest request) {
return mockResponse(request, "pro_customer_risk_grade", "고객 위험등급 조회");
}
private ProductToolResponse mockResponse(ProductToolRequest request, String toolName, String title) {
ProductToolResponse response = new ProductToolResponse();
response.setToolName(toolName);
response.setCategory("PRO");
response.setReferenceId(request != null && hasText(request.getSubjectId()) ? request.getSubjectId() : "CUST-000001");
response.setStatus("정상");
response.setSummary(title + " 결과");
response.setAsOfDate(request != null && hasText(request.getQueryDate()) ? request.getQueryDate() : "2026-08-14");
response.setDetails(List.of(title + " 모의 상세정보", "외부 시스템을 변경하지 않는 조회 결과"));
return response;
}
private boolean hasText(String value) {
return value != null && !value.isBlank();
}
}

View File

@@ -0,0 +1,32 @@
package io.shinhanlife.dap.mcc.pro;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.Import;
import io.shinhanlife.dap.lib.mcp.ToolMcpServerConfiguration;
/**
* @package io.shinhanlife.dap.mcc.pro
* @className DapWasProApplication
* @description AX HUB 시스템 처리 클래스
* @author system
* @create 2026.08.13
* <pre>
* ---------- 개정이력 ----------
* 수정일 수정자 수정내용
* ---------- -------- ---------------------------
* 2026.08.13 system 최초생성
*
* </pre>
*/
@SpringBootApplication(scanBasePackages = {"io.shinhanlife.dap.mcc", "io.shinhanlife.dap.lib"})
@ConfigurationPropertiesScan(basePackages = {"io.shinhanlife.dap.mcc", "io.shinhanlife.dap.lib"})
@EnableCaching
@Import(ToolMcpServerConfiguration.class)
public class DapWasProApplication {
public static void main(String[] args) {
SpringApplication.run(DapWasProApplication.class, args);
}
}

View File

@@ -0,0 +1,46 @@
# OCI 클라우드 환경 전용 설정
server:
port: ${PORT:8085}
spring:
config:
activate:
on-profile: dev
import:
- classpath:glow/application-glow.yml
- classpath:glow/application-glow-dev.yml
axhub:
gateway:
url: https://axhubmcp.devjun.net
tool:
url: http://144.24.70.100:8085
eims:
http:
url: http://localhost:${server.port}/api/gateway
tcp:
host: 127.0.0.1
port: 8090
timeout: 5000
jsp:
form:
url: http://localhost:${server.port}/mock/jsp-form
json:
url: http://localhost:${server.port}/mock/jsp-json
mci:
url: http://localhost:${server.port}/api/mock/esb/api
mcistring:
url: http://localhost:${server.port}/api/mock/esb/string
shinhan:
integration:
envrTypeCd: D
eai:
url: http://10.176.32.181
internalMci:
url: http://10.176.32.173
bancaMci:
url: http://10.176.32.117
externalMci:
url: http://10.176.32.176

View File

@@ -0,0 +1,45 @@
# Local 환경 전용 설정 (H2 메모리 DB 등)
spring:
config:
activate:
on-profile: local
import:
- classpath:glow/application-glow.yml
- classpath:glow/application-glow-local.yml
datasource:
url: jdbc:p6spy:h2:mem:testdb;DB_CLOSE_DELAY=-1;
driverClassName: com.p6spy.engine.spy.P6SpyDriver
username: sa
password: password
h2:
console:
enabled: true
eims:
http:
url: http://localhost:${server.port}/api/gateway
tcp:
host: 127.0.0.1
port: 8090
timeout: 5000
jsp:
form:
url: http://localhost:${server.port}/mock/jsp-form
json:
url: http://localhost:${server.port}/mock/jsp-json
mci:
url: http://localhost:${server.port}/api/mock/esb/api
mcistring:
url: http://localhost:${server.port}/api/mock/esb/string
mcp:
security:
tenant-domains:
mcp-client-1: CUSTOMER,COMMON
mcp-client-2: ALL
axhub:
gateway:
url: http://localhost:8081
tool:
url: ${AXHUB_TOOL_URL:http://localhost:${server.port}}

View File

@@ -0,0 +1,16 @@
server:
port: ${PORT:8085}
spring:
config:
activate:
on-profile: prod
import:
- classpath:glow/application-glow.yml
- classpath:glow/application-glow-prod.yml
axhub:
gateway:
url: ${AXHUB_GATEWAY_URL}
tool:
url: ${AXHUB_TOOL_URL}

View File

@@ -0,0 +1,16 @@
server:
port: ${PORT:8085}
spring:
config:
activate:
on-profile: test
import:
- classpath:glow/application-glow.yml
- classpath:glow/application-glow-test.yml
axhub:
gateway:
url: ${AXHUB_GATEWAY_URL}
tool:
url: ${AXHUB_TOOL_URL}

View File

@@ -0,0 +1,18 @@
server:
port: 8085
spring:
application:
name: dap-was-pro
profiles:
active: local
logging:
level:
org.apache.kafka: ERROR
mcp:
namespace: ""
manifest:
bundle-id: was-pro
name-prefix: ""
security:
tenant-domains:
TESTER-DEV: ALL

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<property name="LOG_PATTERN" value="%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] [%X{traceId}] %-5level %logger{36} - %msg%n" />
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>${LOG_PATTERN}</pattern>
</encoder>
</appender>
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>logs/dap-was-pro.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>logs/dap-was-pro-%d{yyyy-MM-dd}.log</fileNamePattern>
<maxHistory>30</maxHistory>
</rollingPolicy>
<encoder>
<pattern>${LOG_PATTERN}</pattern>
</encoder>
</appender>
<root level="INFO">
<appender-ref ref="CONSOLE" />
<appender-ref ref="FILE" />
</root>
<logger name="io.shinhanlife" level="DEBUG" />
</configuration>

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_activity_status\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 활동상태 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 활동상태 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_affiliation_history\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 소속변경 이력 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 소속변경 이력 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_agent_compliance\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 준법정보 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 준법정보 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_agent_education\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 교육이력 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 교육이력 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_agent_license\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 자격정보 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 자격정보 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_agent_profile\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 기본정보 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 기본정보 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_appointment_status\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 위촉상태 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 위촉상태 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_branch_list\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 지점목록 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 지점목록 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_campaign\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 영업 캠페인 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 영업 캠페인 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_claim_support\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 보험금 청구지원 현황 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 보험금 청구지원 현황 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_commission_grade\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 수수료등급 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 수수료등급 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_commission_summary\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 수수료 요약 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 수수료 요약 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_contract_count\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 계약건수 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 계약건수 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_customer_assignment\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 고객배정 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 고객배정 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_ga_profile\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 조직 기본정보 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 조직 기본정보 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_notice_list\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 공지목록 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 공지목록 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_organization_agent_list\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 소속 설계사 목록 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 소속 설계사 목록 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_organization_manager\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 조직 책임자 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 조직 책임자 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_organization_tree\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 조직도 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 조직도 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_persistency_rate\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 계약유지율 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 계약유지율 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_premium_summary\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 보험료 실적 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 보험료 실적 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_production_summary\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 신계약 실적 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 신계약 실적 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_sales_area\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 영업지역 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 영업지역 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_support_contact\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 업무지원 연락처 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 업무지원 연락처 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"agt_task_list\",\"category\":\"AGT\",\"referenceId\":\"AGT-000001\",\"status\":\"정상\",\"summary\":\"GA 설계사 업무목록 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"GA 설계사 업무목록 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_claim_accident\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험사고 정보 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험사고 정보 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_claim_beneficiary\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험금 수익자 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험금 수익자 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_claim_contact\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험금 청구 담당자 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험금 청구 담당자 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_claim_documents\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험금 청구서류 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험금 청구서류 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_claim_eligibility\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험금 청구 가능여부 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험금 청구 가능여부 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_claim_history\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험금 청구이력 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험금 청구이력 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_claim_payment\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험금 지급내역 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험금 지급내역 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_claim_status\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험금 청구상태 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험금 청구상태 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_contract_beneficiary\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험계약 수익자 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험계약 수익자 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_contract_coverage\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험계약 보장내역 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험계약 보장내역 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_contract_detail\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험계약 상세 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험계약 상세 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_contract_list\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험계약 목록 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험계약 목록 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_contract_loan_status\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험계약 대출현황 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험계약 대출현황 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_contract_payment_status\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험료 납입상태 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험료 납입상태 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_contract_premium\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험계약 보험료 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험계약 보험료 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_contract_rider_list\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험계약 특약목록 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험계약 특약목록 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_contract_surrender_value\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"보험계약 해지환급금 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"보험계약 해지환급금 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_customer_address\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"고객 주소정보 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"고객 주소정보 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_customer_consent\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"고객 동의정보 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"고객 동의정보 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_customer_contact\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"고객 연락처 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"고객 연락처 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_customer_family\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"고객 가족정보 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"고객 가족정보 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_customer_identity\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"고객 본인확인정보 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"고객 본인확인정보 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_customer_occupation\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"고객 직업정보 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"고객 직업정보 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_customer_profile\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"고객 기본정보 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"고객 기본정보 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,5 @@
{
"resultCode": "SUCCESS",
"data": "{\"toolName\":\"pro_customer_risk_grade\",\"category\":\"PRO\",\"referenceId\":\"CUST-000001\",\"status\":\"정상\",\"summary\":\"고객 위험등급 조회 결과\",\"asOfDate\":\"2026-08-14\",\"details\":[\"고객 위험등급 조회 모의 상세정보\",\"외부 시스템을 변경하지 않는 조회 결과\"]}"
}

View File

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

@@ -0,0 +1,24 @@
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

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