opedd-mcp 0.1.2 → 0.3.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/.github/workflows/ci.yml +70 -0
- package/README.md +92 -6
- package/dist/index.js +564 -12
- package/package.json +9 -6
- package/src/index.ts +643 -12
- package/tests/dispatcher.env-gated.test.ts +278 -0
- package/tests/dispatcher.test.ts +419 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opedd-mcp",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "MCP server for Opedd — discover, purchase, and
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "MCP server for Opedd — discover, purchase, verify, and audit content licenses from AI assistants. Covers Phase 11 buyer-side surfaces + Phase 12 Wave 1 + 3 regulatory surfaces (CDSM Article 4(3) RSL + EU AI Act Article 53 attestation + platform onboarding helper).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "tsc",
|
|
12
12
|
"start": "node dist/index.js",
|
|
13
|
-
"dev": "tsx src/index.ts"
|
|
13
|
+
"dev": "tsx src/index.ts",
|
|
14
|
+
"test": "vitest run",
|
|
15
|
+
"test:watch": "vitest"
|
|
14
16
|
},
|
|
15
17
|
"keywords": [
|
|
16
18
|
"mcp",
|
|
@@ -26,11 +28,12 @@
|
|
|
26
28
|
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
27
29
|
},
|
|
28
30
|
"devDependencies": {
|
|
29
|
-
"@types/node": "^22.
|
|
31
|
+
"@types/node": "^22.19.19",
|
|
30
32
|
"tsx": "^4.0.0",
|
|
31
|
-
"typescript": "^5.0.0"
|
|
33
|
+
"typescript": "^5.0.0",
|
|
34
|
+
"vitest": "^4.1.7"
|
|
32
35
|
},
|
|
33
36
|
"engines": {
|
|
34
|
-
"node": ">=
|
|
37
|
+
"node": ">=20"
|
|
35
38
|
}
|
|
36
39
|
}
|