@kubova/mcp 0.1.1 → 0.1.3
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/dist/index.js +0 -2
- package/package.json +20 -2
package/dist/index.js
CHANGED
|
@@ -66,7 +66,6 @@ const PackInputSchema = z.object({
|
|
|
66
66
|
.object({
|
|
67
67
|
loadingDirection: z.enum(['floor-to-top', 'right-to-left']).optional(),
|
|
68
68
|
maxContainers: z.number().int().positive().optional(),
|
|
69
|
-
vnsTimeLimitMs: z.number().int().nonnegative().optional(),
|
|
70
69
|
})
|
|
71
70
|
.optional(),
|
|
72
71
|
});
|
|
@@ -110,7 +109,6 @@ const PACK_INPUT_JSONSCHEMA = {
|
|
|
110
109
|
properties: {
|
|
111
110
|
loadingDirection: { type: 'string', enum: ['floor-to-top', 'right-to-left'] },
|
|
112
111
|
maxContainers: { type: 'integer' },
|
|
113
|
-
vnsTimeLimitMs: { type: 'integer' },
|
|
114
112
|
},
|
|
115
113
|
},
|
|
116
114
|
},
|
package/package.json
CHANGED
|
@@ -1,8 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubova/mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Model Context Protocol server for the Kubova container loading calculator",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Model Context Protocol (MCP) server for the Kubova 3D container loading calculator — plan container and pallet loads from any AI assistant.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"homepage": "https://kubova.com",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://kubova.com/contact"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"mcp",
|
|
12
|
+
"model context protocol",
|
|
13
|
+
"container loading",
|
|
14
|
+
"load planning",
|
|
15
|
+
"logistics",
|
|
16
|
+
"freight",
|
|
17
|
+
"packing",
|
|
18
|
+
"pallet",
|
|
19
|
+
"container calculator",
|
|
20
|
+
"ai agent",
|
|
21
|
+
"ai tools"
|
|
22
|
+
],
|
|
23
|
+
"author": "Kubova (https://kubova.com)",
|
|
6
24
|
"type": "module",
|
|
7
25
|
"bin": {
|
|
8
26
|
"kubova-mcp": "./dist/index.js"
|