@digipair/skill-client-mcp 0.105.3 → 0.106.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs.js +31577 -2487
- package/index.esm.js +31558 -2490
- package/libs/engine/src/index.d.ts +2 -0
- package/libs/engine/src/lib/alias.interface.d.ts +9 -0
- package/libs/engine/src/lib/engine.d.ts +13 -0
- package/libs/engine/src/lib/pins-settings.interface.d.ts +15 -0
- package/libs/skill-client-mcp/src/lib/skill-client-mcp.d.ts +24 -2
- package/package.json +6 -1
- package/schema.fr.json +96 -26
- package/schema.json +110 -40
package/schema.json
CHANGED
|
@@ -8,16 +8,16 @@
|
|
|
8
8
|
"x-icon": "🔗"
|
|
9
9
|
},
|
|
10
10
|
"paths": {
|
|
11
|
-
"/
|
|
11
|
+
"/StreamableHTTPClient": {
|
|
12
12
|
"post": {
|
|
13
13
|
"tags": [
|
|
14
14
|
"service"
|
|
15
15
|
],
|
|
16
|
-
"summary": "
|
|
16
|
+
"summary": "Client MCP HTTP",
|
|
17
17
|
"parameters": [
|
|
18
18
|
{
|
|
19
19
|
"name": "url",
|
|
20
|
-
"summary": "
|
|
20
|
+
"summary": "URL",
|
|
21
21
|
"required": true,
|
|
22
22
|
"description": "URL of the MCP server to connect to",
|
|
23
23
|
"schema": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"name": "name",
|
|
29
|
-
"summary": "Client
|
|
29
|
+
"summary": "Client Name",
|
|
30
30
|
"required": false,
|
|
31
31
|
"description": "Name of the MCP client (default: digipair-mcp-client)",
|
|
32
32
|
"schema": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
"name": "version",
|
|
38
|
-
"summary": "Client
|
|
38
|
+
"summary": "Client Version",
|
|
39
39
|
"required": false,
|
|
40
40
|
"description": "Version of the MCP client (default: 1.0.0)",
|
|
41
41
|
"schema": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"name": "options",
|
|
47
|
-
"summary": "Transport
|
|
47
|
+
"summary": "Transport Options",
|
|
48
48
|
"required": false,
|
|
49
49
|
"description": "Additional transport options",
|
|
50
50
|
"schema": {
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
"x-events": [],
|
|
56
56
|
"responses": {
|
|
57
57
|
"200": {
|
|
58
|
-
"description": "
|
|
58
|
+
"description": "Connection successful to the MCP server",
|
|
59
59
|
"content": {
|
|
60
60
|
"application/json": {
|
|
61
61
|
"schema": {
|
|
62
62
|
"type": "object",
|
|
63
|
-
"description": "MCP client
|
|
63
|
+
"description": "Instance of the MCP client"
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
}
|
|
@@ -68,18 +68,36 @@
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"/
|
|
71
|
+
"/StdioClient": {
|
|
72
72
|
"post": {
|
|
73
73
|
"tags": [
|
|
74
74
|
"service"
|
|
75
75
|
],
|
|
76
|
-
"summary": "
|
|
76
|
+
"summary": "MCP STDIO Client",
|
|
77
77
|
"parameters": [
|
|
78
78
|
{
|
|
79
|
-
"name": "
|
|
80
|
-
"summary": "
|
|
81
|
-
"required":
|
|
82
|
-
"description": "
|
|
79
|
+
"name": "name",
|
|
80
|
+
"summary": "Client Name",
|
|
81
|
+
"required": false,
|
|
82
|
+
"description": "Name of the MCP client (default: digipair-mcp-client)",
|
|
83
|
+
"schema": {
|
|
84
|
+
"type": "string"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "version",
|
|
89
|
+
"summary": "Client Version",
|
|
90
|
+
"required": false,
|
|
91
|
+
"description": "Version of the MCP client (default: 1.0.0)",
|
|
92
|
+
"schema": {
|
|
93
|
+
"type": "string"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "options",
|
|
98
|
+
"summary": "Transport Options",
|
|
99
|
+
"required": false,
|
|
100
|
+
"description": "Additional transport options",
|
|
83
101
|
"schema": {
|
|
84
102
|
"type": "object"
|
|
85
103
|
}
|
|
@@ -88,11 +106,12 @@
|
|
|
88
106
|
"x-events": [],
|
|
89
107
|
"responses": {
|
|
90
108
|
"200": {
|
|
91
|
-
"description": "
|
|
109
|
+
"description": "Connection successful to the MCP server",
|
|
92
110
|
"content": {
|
|
93
111
|
"application/json": {
|
|
94
112
|
"schema": {
|
|
95
|
-
"type": "
|
|
113
|
+
"type": "object",
|
|
114
|
+
"description": "Instance of the MCP client"
|
|
96
115
|
}
|
|
97
116
|
}
|
|
98
117
|
}
|
|
@@ -109,11 +128,14 @@
|
|
|
109
128
|
"parameters": [
|
|
110
129
|
{
|
|
111
130
|
"name": "client",
|
|
112
|
-
"summary": "MCP
|
|
131
|
+
"summary": "MCP Client",
|
|
113
132
|
"required": true,
|
|
114
|
-
"description": "
|
|
133
|
+
"description": "Instance of the MCP client",
|
|
115
134
|
"schema": {
|
|
116
|
-
"type": "
|
|
135
|
+
"type": "array",
|
|
136
|
+
"items": {
|
|
137
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
138
|
+
}
|
|
117
139
|
}
|
|
118
140
|
}
|
|
119
141
|
],
|
|
@@ -149,11 +171,14 @@
|
|
|
149
171
|
"parameters": [
|
|
150
172
|
{
|
|
151
173
|
"name": "client",
|
|
152
|
-
"summary": "MCP
|
|
174
|
+
"summary": "MCP Client",
|
|
153
175
|
"required": true,
|
|
154
|
-
"description": "
|
|
176
|
+
"description": "Instance of the MCP client",
|
|
155
177
|
"schema": {
|
|
156
|
-
"type": "
|
|
178
|
+
"type": "array",
|
|
179
|
+
"items": {
|
|
180
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
181
|
+
}
|
|
157
182
|
}
|
|
158
183
|
},
|
|
159
184
|
{
|
|
@@ -198,11 +223,14 @@
|
|
|
198
223
|
"parameters": [
|
|
199
224
|
{
|
|
200
225
|
"name": "client",
|
|
201
|
-
"summary": "MCP
|
|
226
|
+
"summary": "MCP Client",
|
|
202
227
|
"required": true,
|
|
203
|
-
"description": "
|
|
228
|
+
"description": "Instance of the MCP client",
|
|
204
229
|
"schema": {
|
|
205
|
-
"type": "
|
|
230
|
+
"type": "array",
|
|
231
|
+
"items": {
|
|
232
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
233
|
+
}
|
|
206
234
|
}
|
|
207
235
|
}
|
|
208
236
|
],
|
|
@@ -238,11 +266,14 @@
|
|
|
238
266
|
"parameters": [
|
|
239
267
|
{
|
|
240
268
|
"name": "client",
|
|
241
|
-
"summary": "MCP
|
|
269
|
+
"summary": "MCP Client",
|
|
242
270
|
"required": true,
|
|
243
|
-
"description": "
|
|
271
|
+
"description": "Instance of the MCP client",
|
|
244
272
|
"schema": {
|
|
245
|
-
"type": "
|
|
273
|
+
"type": "array",
|
|
274
|
+
"items": {
|
|
275
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
276
|
+
}
|
|
246
277
|
}
|
|
247
278
|
},
|
|
248
279
|
{
|
|
@@ -296,11 +327,14 @@
|
|
|
296
327
|
"parameters": [
|
|
297
328
|
{
|
|
298
329
|
"name": "client",
|
|
299
|
-
"summary": "MCP
|
|
330
|
+
"summary": "MCP Client",
|
|
300
331
|
"required": true,
|
|
301
|
-
"description": "
|
|
332
|
+
"description": "Instance of the MCP client",
|
|
302
333
|
"schema": {
|
|
303
|
-
"type": "
|
|
334
|
+
"type": "array",
|
|
335
|
+
"items": {
|
|
336
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
337
|
+
}
|
|
304
338
|
}
|
|
305
339
|
}
|
|
306
340
|
],
|
|
@@ -336,11 +370,14 @@
|
|
|
336
370
|
"parameters": [
|
|
337
371
|
{
|
|
338
372
|
"name": "client",
|
|
339
|
-
"summary": "MCP
|
|
373
|
+
"summary": "MCP Client",
|
|
340
374
|
"required": true,
|
|
341
|
-
"description": "
|
|
375
|
+
"description": "Instance of the MCP client",
|
|
342
376
|
"schema": {
|
|
343
|
-
"type": "
|
|
377
|
+
"type": "array",
|
|
378
|
+
"items": {
|
|
379
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
380
|
+
}
|
|
344
381
|
}
|
|
345
382
|
},
|
|
346
383
|
{
|
|
@@ -397,11 +434,14 @@
|
|
|
397
434
|
"parameters": [
|
|
398
435
|
{
|
|
399
436
|
"name": "client",
|
|
400
|
-
"summary": "MCP
|
|
437
|
+
"summary": "MCP Client",
|
|
401
438
|
"required": true,
|
|
402
|
-
"description": "
|
|
439
|
+
"description": "Instance of the MCP client",
|
|
403
440
|
"schema": {
|
|
404
|
-
"type": "
|
|
441
|
+
"type": "array",
|
|
442
|
+
"items": {
|
|
443
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
444
|
+
}
|
|
405
445
|
}
|
|
406
446
|
}
|
|
407
447
|
],
|
|
@@ -429,11 +469,14 @@
|
|
|
429
469
|
"parameters": [
|
|
430
470
|
{
|
|
431
471
|
"name": "client",
|
|
432
|
-
"summary": "MCP
|
|
472
|
+
"summary": "MCP Client",
|
|
433
473
|
"required": true,
|
|
434
|
-
"description": "
|
|
474
|
+
"description": "Instance of the MCP client",
|
|
435
475
|
"schema": {
|
|
436
|
-
"type": "
|
|
476
|
+
"type": "array",
|
|
477
|
+
"items": {
|
|
478
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
479
|
+
}
|
|
437
480
|
}
|
|
438
481
|
}
|
|
439
482
|
],
|
|
@@ -456,6 +499,9 @@
|
|
|
456
499
|
"components": {
|
|
457
500
|
"schemas": {
|
|
458
501
|
"Resource": {
|
|
502
|
+
"tags": [
|
|
503
|
+
"service"
|
|
504
|
+
],
|
|
459
505
|
"type": "object",
|
|
460
506
|
"properties": {
|
|
461
507
|
"uri": {
|
|
@@ -473,6 +519,9 @@
|
|
|
473
519
|
}
|
|
474
520
|
},
|
|
475
521
|
"ResourceContent": {
|
|
522
|
+
"tags": [
|
|
523
|
+
"service"
|
|
524
|
+
],
|
|
476
525
|
"type": "object",
|
|
477
526
|
"properties": {
|
|
478
527
|
"uri": {
|
|
@@ -491,6 +540,9 @@
|
|
|
491
540
|
}
|
|
492
541
|
},
|
|
493
542
|
"Tool": {
|
|
543
|
+
"tags": [
|
|
544
|
+
"service"
|
|
545
|
+
],
|
|
494
546
|
"type": "object",
|
|
495
547
|
"properties": {
|
|
496
548
|
"name": {
|
|
@@ -505,6 +557,9 @@
|
|
|
505
557
|
}
|
|
506
558
|
},
|
|
507
559
|
"ToolResult": {
|
|
560
|
+
"tags": [
|
|
561
|
+
"service"
|
|
562
|
+
],
|
|
508
563
|
"type": "object",
|
|
509
564
|
"properties": {
|
|
510
565
|
"type": {
|
|
@@ -520,6 +575,9 @@
|
|
|
520
575
|
}
|
|
521
576
|
},
|
|
522
577
|
"Prompt": {
|
|
578
|
+
"tags": [
|
|
579
|
+
"service"
|
|
580
|
+
],
|
|
523
581
|
"type": "object",
|
|
524
582
|
"properties": {
|
|
525
583
|
"name": {
|
|
@@ -537,6 +595,9 @@
|
|
|
537
595
|
}
|
|
538
596
|
},
|
|
539
597
|
"PromptArgument": {
|
|
598
|
+
"tags": [
|
|
599
|
+
"service"
|
|
600
|
+
],
|
|
540
601
|
"type": "object",
|
|
541
602
|
"properties": {
|
|
542
603
|
"name": {
|
|
@@ -551,6 +612,9 @@
|
|
|
551
612
|
}
|
|
552
613
|
},
|
|
553
614
|
"PromptMessage": {
|
|
615
|
+
"tags": [
|
|
616
|
+
"service"
|
|
617
|
+
],
|
|
554
618
|
"type": "object",
|
|
555
619
|
"properties": {
|
|
556
620
|
"role": {
|
|
@@ -562,6 +626,9 @@
|
|
|
562
626
|
}
|
|
563
627
|
},
|
|
564
628
|
"ServerCapabilities": {
|
|
629
|
+
"tags": [
|
|
630
|
+
"service"
|
|
631
|
+
],
|
|
565
632
|
"type": "object",
|
|
566
633
|
"properties": {
|
|
567
634
|
"experimental": {
|
|
@@ -603,6 +670,9 @@
|
|
|
603
670
|
}
|
|
604
671
|
},
|
|
605
672
|
"ServerInfo": {
|
|
673
|
+
"tags": [
|
|
674
|
+
"service"
|
|
675
|
+
],
|
|
606
676
|
"type": "object",
|
|
607
677
|
"properties": {
|
|
608
678
|
"name": {
|