refactor: massive rename dap -> dat and fix scaffold syntax error
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 14s

This commit is contained in:
jade
2026-08-20 10:41:37 +09:00
parent 64c422378f
commit 0085ec6919
765 changed files with 1151 additions and 1151 deletions

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: dat-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/dat-was-pro.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>logs/dat-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,4 @@
{
"resultCode" : "SUCCESS",
"summary" : "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,47 @@
name: agt_ga_status
display_name: "GA 활동 현황 조회"
version: 1.0.0
category_key: agt
description:
function: "GA 활동 데이터를 조회하고 요약한다."
when_to_use: "사용자가 특정 기간의 GA 활동 지표를 확인하고자 할 때"
when_not_to_use: "사용자가 GA가 아닌 다른 시스템의 데이터를 요청하거나, 비정형적인 요청을 할 때"
io_limits: "입력은 시작일·종료일, 메트릭, 차원 선택이며, 출력은 JSON 형식의 요약 데이터이다."
display_description: "GA 활동 현황 조회"
example_queries:
- "지난 7일간 페이지뷰 통계"
- "2024년 9월 일일 방문자 수"
- "지역별 전환율 비교"
- "전체 세션 평균 체류 시간"
- "트래픽 소스별 방문자 수"
read_only: true
destructive: false
idempotent: true
parameters_schema:
type: object
properties:
startDate:
type: string
description: "시작 날짜 (YYYY-MM-DD) (형식: ^\\d{4}-\\d{2}-\\d{2}$) (예시: 2024-09-01)"
endDate:
type: string
description: "종료 날짜 (YYYY-MM-DD) (형식: ^\\d{4}-\\d{2}-\\d{2}$) (예시: 2024-09-30)"
metric:
type: string
description: "요청할 메트릭 이름 (예시: pageViews, sessionDuration)"
dimension:
type: string
description: "선택한 차원 필드 (예시: country, device)"
format:
type: string
description: "출력 형식 선택 (예시: json, csv)"
required:
- startDate
- endDate
- metric
- format
additionalProperties: false
tags: ["Analytics", "Reporting"]
legacy_interface_id: "CLATTP00001"
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

View File

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

View File

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

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