Initial commit

This commit is contained in:
2026-08-05 14:20:01 +09:00
commit 71523c98e1
178 changed files with 12481 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
}
}