@prefixcheck/edi-mcp 0.1.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/dist/types.js ADDED
@@ -0,0 +1,6 @@
1
+ // ============================================================
2
+ // @prefixcheck/edi · public type surface
3
+ //
4
+ // Shared interfaces for the parser, schema, and diagnostic layers.
5
+ // ============================================================
6
+ export {};
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@prefixcheck/edi-mcp",
3
+ "version": "0.1.0",
4
+ "mcpName": "io.github.xultrax-web/prefixcheck-edi-mcp",
5
+ "description": "MCP server for EDIFACT CODECO + COPRAR — parse, validate against SMDG, reconcile cross-message, validate ISO 6346 check digits, decode size-type, look up SMDG code lists. Wraps @prefixcheck/edi inside the Model Context Protocol so any MCP client (Claude Desktop, Cursor, Cline, Continue, Claude Code) gets operator-grade container-shipping EDI knowledge.",
6
+ "type": "module",
7
+ "bin": {
8
+ "prefixcheck-edi-mcp": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "build": "tsc",
17
+ "dev": "tsc --watch",
18
+ "start": "node dist/index.js",
19
+ "format": "prettier --write .",
20
+ "format:check": "prettier --check .",
21
+ "prepublishOnly": "npm run build"
22
+ },
23
+ "keywords": [
24
+ "mcp",
25
+ "model-context-protocol",
26
+ "mcp-server",
27
+ "edifact",
28
+ "edi",
29
+ "codeco",
30
+ "coprar",
31
+ "smdg",
32
+ "container",
33
+ "shipping",
34
+ "iso6346",
35
+ "iso-6346",
36
+ "un-locode",
37
+ "freight",
38
+ "logistics",
39
+ "depot",
40
+ "claude",
41
+ "cursor",
42
+ "cline"
43
+ ],
44
+ "homepage": "https://prefixcheck.com/container-edi/",
45
+ "bugs": {
46
+ "url": "https://github.com/xultrax-web/prefixcheck-edi-mcp/issues"
47
+ },
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+https://github.com/xultrax-web/prefixcheck-edi-mcp.git"
51
+ },
52
+ "license": "MIT",
53
+ "publishConfig": {
54
+ "access": "public"
55
+ },
56
+ "dependencies": {
57
+ "@modelcontextprotocol/sdk": "^1.0.4"
58
+ },
59
+ "devDependencies": {
60
+ "@types/node": "^22.10.2",
61
+ "prettier": "^3.8.3",
62
+ "typescript": "^5.7.2"
63
+ },
64
+ "engines": {
65
+ "node": ">=20"
66
+ }
67
+ }