-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 3 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
66
67
68
69
{
"name": "export-controls-agent-mcp",
"version": "0.4.1",
"description": "MCP server for export-control legal research. Models US EAR jurisdiction (734.4 de minimis, all 13 FDP rules), the Part 738 Commerce Country Chart licence determination, Part 740 License Exceptions, Part 744 end-use controls, the Commerce Control List and the Consolidated Screening List against dated eCFR snapshots; the PRC MOFCOM dual-use framework including the suspended Announcement 61 extraterritorial rules; and full Korean 대외무역법 text.",
"keywords": [
"mcp",
"model-context-protocol",
"export-controls",
"ear",
"bis",
"eccn",
"commerce-control-list",
"sanctions",
"trade-compliance",
"semiconductor",
"battery",
"mofcom",
"china-export-control",
"rare-earths",
"대외무역법",
"전략물자"
],
"type": "module",
"bin": {
"export-controls-agent-mcp": "./src/server.js"
},
"files": [
"src/",
"scripts/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node ./src/server.js",
"inspect": "npx @modelcontextprotocol/inspector node ./src/server.js",
"data:country-groups": "node ./scripts/build-country-groups.mjs",
"data:country-chart": "node ./scripts/build-country-chart.mjs",
"data:part740": "node ./scripts/build-part740-catalog.mjs",
"data:ccl": "node ./scripts/build-ccl.mjs",
"data:screening": "node ./scripts/build-screening-list.mjs",
"data:rebuild": "npm run data:country-groups && npm run data:country-chart && npm run data:part740 && npm run data:ccl && npm run data:screening && npm run validate",
"validate:vocabulary": "node ./scripts/validate-vocabulary.mjs",
"validate:fdp": "node ./scripts/validate-fdp-rules.mjs",
"validate:country-chart": "node ./scripts/validate-country-chart.mjs",
"validate:china": "node ./scripts/validate-china.mjs",
"validate": "npm run validate:vocabulary && npm run validate:fdp && npm run validate:country-chart && npm run validate:china",
"preflight": "node ./scripts/preflight.mjs",
"calibrate:screening": "node ./verify/calibrate.mjs",
"data:korean-law": "node ./scripts/build-korean-law.mjs",
"test": "node ./verify/check-textmatch.mjs && node ./verify/check-critical.mjs && node ./verify/check-ccl.mjs && node ./verify/check-task3.mjs && node ./verify/check-task4.mjs && node ./verify/check-screening.mjs && node ./verify/check-jurisdiction.mjs && node ./verify/check-country-chart.mjs && node ./verify/check-china.mjs && node ./verify/check-coverage-claims.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.5",
"zod": "^3.25.76"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/seelpeed-debug/export-controls-agent-mcp.git"
},
"bugs": {
"url": "https://github.com/seelpeed-debug/export-controls-agent-mcp/issues"
},
"homepage": "https://github.com/seelpeed-debug/export-controls-agent-mcp#readme",
"author": "seelpeed-debug"
}