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

View File

@@ -0,0 +1,15 @@
# OCI 클라우드 개발 환경 전용 설정
server:
port: ${PORT:8084}
axhub:
gateway:
url: https://axhubmcp.devjun.net
spring:
config:
activate:
on-profile: dev
import:
- classpath:glow/application-glow.yml
- classpath:glow/application-glow-dev.yml

View File

@@ -0,0 +1,32 @@
# 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
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}}
sol:
req-detail:
mock-enabled: true

View File

@@ -0,0 +1,16 @@
server:
port: ${PORT:8084}
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:8084}
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,19 @@
server:
port: 8084
spring:
application:
name: dap-was-cus
profiles:
active: local
logging:
level:
org.apache.kafka: ERROR
mcp:
namespace: ""
manifest:
bundle-id: was-cus
# Set the AA-assigned prefix before MCP pull activation (for example: cus.).
name-prefix: ""
security:
tenant-domains:
TESTER-DEV: ALL

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<!-- 1. 로그 패턴 설정 (MDC traceId 포함) -->
<property name="LOG_PATTERN" value="%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] [%X{traceId}] %-5level %logger{36} - %msg%n" />
<!-- 2. 콘솔(Console) 출력 설정 (로컬 개발용) -->
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>${LOG_PATTERN}</pattern>
</encoder>
</appender>
<!-- 3. 파일(File) 출력 설정 (서버 운영용) -->
<!-- Logback에서 시스템 Hostname을 가져오기 위한 설정 -->
<property name="HOSTNAME" value="${HOSTNAME}" />
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>/swlog/dap-was-cus/A01/${HOSTNAME}_A01.log</file> <!-- 현재 로그가 쌓이는 파일 -->
<rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
<!-- 매일 자정에 날짜를 붙여서 지난 로그를 분리 저장 -->
<fileNamePattern>/swlog/dap-was-cus/A01/${HOSTNAME}_A01_%d{yyyyMMdd}.%i.log</fileNamePattern>
<!-- 개별 로그 파일 크기를 100MB로 제한하고, 전체 보관 일수는 30일, 총 로그 누적 용량은 1GB로 제한 -->
<maxFileSize>100MB</maxFileSize>
<maxHistory>30</maxHistory>
<totalSizeCap>1GB</totalSizeCap>
</rollingPolicy>
<encoder>
<pattern>${LOG_PATTERN}</pattern>
</encoder>
</appender>
<!-- 4. 기본 로깅 레벨 설정 -->
<root level="INFO">
<appender-ref ref="CONSOLE" />
<appender-ref ref="FILE" />
</root>
<!-- 5. 우리 프로젝트 패키지는 디버그 레벨까지 상세히 보기 -->
<logger name="io.shinhanlife" level="DEBUG" />
</configuration>

View File

@@ -0,0 +1,4 @@
{
"resultCode" : "SUCCESS",
"data" : "[{\"date\":\"2024-01-05\",\"message\":\"안내 내용\"}]"
}

View File

@@ -0,0 +1,4 @@
{
"resultCode" : "SUCCESS",
"claimId" : "CLM20230001"
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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