Initial commit

This commit is contained in:
2026-08-05 15:54:25 +09:00
commit a4eb5a580f
168 changed files with 12057 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {
"protocolVersion": "2025-06-18",
"capabilities": {},
"clientInfo": {
"name": "toolbox-executor",
"version": "0.1.0"
}
}
}

View File

@@ -0,0 +1,9 @@
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"protocolVersion": "2025-06-18",
"serverInfo": {},
"capabilities": {}
}
}

View File

@@ -0,0 +1,5 @@
{
"jsonrpc": "2.0",
"method": "notifications/initialized",
"params": {}
}

View File

@@ -0,0 +1,13 @@
{
"jsonrpc": "2.0",
"id": 3,
"result": {
"content": [
{
"type": "text",
"text": "customer.search@1.0.0: timed out"
}
],
"isError": true
}
}

View File

@@ -0,0 +1,11 @@
{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "customer.search",
"arguments": {
"customerNo": "1234567890"
}
}
}

View File

@@ -0,0 +1,16 @@
{
"jsonrpc": "2.0",
"id": 3,
"result": {
"content": [
{
"type": "text",
"text": "{\"customerName\":\"Hong\"}"
}
],
"structuredContent": {
"customerName": "Hong"
},
"isError": false
}
}

View File

@@ -0,0 +1,17 @@
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"protocolVersion": "2025-06-18",
"capabilities": {
"tools": {
"listChanged": false
}
},
"serverInfo": {
"name": "shl-axhub-mcp-server",
"title": "SHL AX HUB MCP Server",
"version": "1.0.0"
}
}
}

View File

@@ -0,0 +1,13 @@
{
"jsonrpc": "2.0",
"id": 3,
"result": {
"content": [
{
"type": "text",
"text": "customer.search@1.0.0: timed out"
}
],
"isError": true
}
}

View File

@@ -0,0 +1,8 @@
{
"jsonrpc": "2.0",
"id": 3,
"error": {
"code": -32602,
"message": "Invalid params: 'query' is required"
}
}

View File

@@ -0,0 +1,12 @@
{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "processing",
"arguments": {
"query": "processing system information inquiry",
"category": "processing"
}
}
}

View File

@@ -0,0 +1,16 @@
{
"jsonrpc": "2.0",
"id": 3,
"result": {
"content": [
{
"type": "text",
"text": "processing complete",
"_meta": {
"searchTime": 976.1
}
}
],
"isError": false
}
}

View File

@@ -0,0 +1,67 @@
{
"jsonrpc": "2.0",
"id": 2,
"result": {
"tools": [
{
"name": "insurance.processing.test",
"title": "처리계 연계 점검",
"description": "처리계 연계 경로와 요청·응답 형식을 점검하는 테스트 전용 도구입니다. 실제 보험 업무 데이터는 처리하지 않습니다.",
"inputSchema": {
"type": "object",
"properties": {
"requestId": {
"type": "string",
"description": "테스트 요청 식별자입니다."
}
}
},
"annotations": {
"readOnlyHint": true,
"destructiveHint": false,
"idempotentHint": true,
"openWorldHint": false
}
},
{
"name": "insurance.corebanking.test",
"description": "계정계 연계 경로와 요청·응답 형식을 점검하는 테스트 전용 도구입니다. 실제 계약·수납·지급 처리는 수행하지 않습니다.",
"inputSchema": {
"type": "object",
"properties": {
"requestId": {
"type": "string",
"description": "테스트 요청 식별자입니다."
}
}
}
},
{
"name": "insurance.information.test",
"description": "정보계 연계 경로와 요청·응답 형식을 점검하는 테스트 전용 도구입니다. 실제 고객·계약 정보를 조회하지 않습니다.",
"inputSchema": {
"type": "object",
"properties": {
"requestId": {
"type": "string",
"description": "테스트 요청 식별자입니다."
}
}
}
},
{
"name": "insurance.channel.test",
"description": "채널계 연계 경로와 요청·응답 형식을 점검하는 테스트 전용 도구입니다. 실제 고객 채널 업무를 수행하지 않습니다.",
"inputSchema": {
"type": "object",
"properties": {
"requestId": {
"type": "string",
"description": "테스트 요청 식별자입니다."
}
}
}
}
]
}
}