@uvrn/mcp 1.3.0 → 1.4.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/README.md +1 -1
- package/dist/index.js +0 -0
- package/package.json +34 -19
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/@uvrn/mcp)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
|
|
8
|
-
**Release:** 1.
|
|
8
|
+
**Release:** 1.4.0.
|
|
9
9
|
|
|
10
10
|
**Disclaimer:** UVRN is in Alpha testing. The engine measures whether your sources agree with each other — not whether they’re correct. Final trust of output rests with the user. Use at your own risk. Have fun.
|
|
11
11
|
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uvrn/mcp",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"publishConfig": {
|
|
3
|
+
"version": "1.4.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
5
7
|
"description": "UVRN MCP server — AI-native bundle processing",
|
|
6
8
|
"main": "dist/index.js",
|
|
7
9
|
"types": "dist/index.d.ts",
|
|
8
|
-
"bin": {
|
|
9
|
-
|
|
10
|
+
"bin": {
|
|
11
|
+
"uvrn-mcp": "dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"uvrn",
|
|
15
|
+
"mcp",
|
|
16
|
+
"verification",
|
|
17
|
+
"receipt",
|
|
18
|
+
"ai"
|
|
19
|
+
],
|
|
10
20
|
"author": "UVRN",
|
|
11
21
|
"license": "MIT",
|
|
12
22
|
"repository": {
|
|
@@ -15,19 +25,9 @@
|
|
|
15
25
|
"directory": "uvrn-mcp"
|
|
16
26
|
},
|
|
17
27
|
"homepage": "https://github.com/UVRN-org/uvrn-packages#readme",
|
|
18
|
-
"scripts": {
|
|
19
|
-
"build": "tsc",
|
|
20
|
-
"dev": "tsc --watch",
|
|
21
|
-
"test": "vitest",
|
|
22
|
-
"test:coverage": "vitest --coverage",
|
|
23
|
-
"start": "node dist/index.js",
|
|
24
|
-
"clean": "rm -rf dist",
|
|
25
|
-
"lint": "eslint src --ext .ts",
|
|
26
|
-
"format": "prettier --write \"src/**/*.ts\""
|
|
27
|
-
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@
|
|
30
|
-
"@
|
|
29
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
30
|
+
"@uvrn/core": "^1.4.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/node": "^20.0.0",
|
|
@@ -39,6 +39,21 @@
|
|
|
39
39
|
"typescript": "^5.3.0",
|
|
40
40
|
"vitest": "^1.0.0"
|
|
41
41
|
},
|
|
42
|
-
"engines": {
|
|
43
|
-
|
|
44
|
-
}
|
|
42
|
+
"engines": {
|
|
43
|
+
"node": ">=18.0.0"
|
|
44
|
+
},
|
|
45
|
+
"files": [
|
|
46
|
+
"dist",
|
|
47
|
+
"README.md"
|
|
48
|
+
],
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "tsc",
|
|
51
|
+
"dev": "tsc --watch",
|
|
52
|
+
"test": "vitest",
|
|
53
|
+
"test:coverage": "vitest --coverage",
|
|
54
|
+
"start": "node dist/index.js",
|
|
55
|
+
"clean": "rm -rf dist",
|
|
56
|
+
"lint": "eslint src --ext .ts",
|
|
57
|
+
"format": "prettier --write \"src/**/*.ts\""
|
|
58
|
+
}
|
|
59
|
+
}
|