-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.64 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
60
61
62
63
64
65
{
"name": "freightutils-mcp",
"version": "2.12.1",
"mcpName": "io.github.SoapyRED/freightutils",
"description": "Neutral freight reference + validation layer for AI agents — ADR dangerous goods, HS codes, airlines, airports, UN/LOCODE, Incoterms, identifier validation and freight math. Every tool declares a typed output schema and returns a source-cited response envelope (structuredContent) an agent can cite.",
"author": "FreightUtils <contact@freightutils.com>",
"license": "MIT",
"homepage": "https://www.freightutils.com/api-docs",
"repository": {
"type": "git",
"url": "git+https://github.com/SoapyRED/freightutils-mcp.git"
},
"bugs": {
"url": "https://github.com/SoapyRED/freightutils-mcp/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"freight",
"logistics",
"shipping",
"transportation",
"adr",
"dangerous-goods",
"hs-codes",
"air-freight",
"sea-freight",
"road-freight",
"customs",
"calculator",
"iata",
"unlocode",
"cbm",
"ldm",
"incoterms"
],
"type": "module",
"main": "dist/index.js",
"bin": {
"freightutils-mcp": "dist/bin/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/bin/cli.js",
"test": "tsc -p tsconfig.test.json && node --test dist-test/api.test.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"zod": "^3.24.4"
},
"devDependencies": {
"typescript": "^5.8.3",
"@types/node": "^22"
},
"engines": {
"node": ">=18"
}
}