-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "loadingmcp-mcp",
"mcpName": "io.github.lxxmng/container-loading",
"version": "0.1.0",
"description": "Container load planning MCP server \u2014 3D load plans, right-size container mix, utilization, centre of gravity, crush & securing, VGM, axle load, and CTU/IMDG checks across 200+ equipment types (containers, trucks, ULDs, pallets). Works with Claude, Cursor, and any MCP client.",
"type": "module",
"main": "dist/index.js",
"bin": {
"loadingmcp-mcp": "dist/index.js"
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node --banner \"#!/usr/bin/env node\"",
"dev": "bun run --watch src/index.ts",
"start": "bun src/index.ts"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"load-planning",
"container-load-planning",
"container-loading-mcp",
"load-planning-mcp",
"bin-packing",
"3d-load-plan",
"container-loading",
"stuffing",
"vgm",
"axle-load",
"centre-of-gravity",
"ctu",
"imdg",
"freight",
"logistics",
"supply-chain",
"claude",
"cursor",
"llm"
],
"author": "LoadingMCP",
"license": "MIT",
"homepage": "https://loadingmcp.com/mcp",
"repository": {
"type": "git",
"url": "https://github.com/lxxmng/loadingmcp-mcp"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.24.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}