@visulima/vis-mcp 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +20 -20
package/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ ## @visulima/vis-mcp [1.0.2](https://github.com/visulima/visulima/compare/%40visulima%2Fvis-mcp%401.0.1...%40visulima%2Fvis-mcp%401.0.2) (2026-07-15)
2
+
3
+
4
+ ### Dependencies
5
+
6
+ * **@visulima/fs:** upgraded to 5.0.2
7
+ * **@visulima/vis:** upgraded to 1.0.2
8
+
9
+ ## @visulima/vis-mcp [1.0.1](https://github.com/visulima/visulima/compare/%40visulima%2Fvis-mcp%401.0.0...%40visulima%2Fvis-mcp%401.0.1) (2026-07-15)
10
+
11
+
12
+ ### Dependencies
13
+
14
+ * **@visulima/fs:** upgraded to 5.0.1
15
+ * **@visulima/vis:** upgraded to 1.0.1
16
+
1
17
  ## @visulima/vis-mcp 1.0.0 (2026-07-03)
2
18
 
3
19
  ### ⚠ BREAKING CHANGES
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/vis-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "MCP (Model Context Protocol) server for @visulima/vis — exposes vis tooling to AI agents over stdio",
5
5
  "keywords": [
6
6
  "agent",
@@ -15,6 +15,11 @@
15
15
  ],
16
16
  "homepage": "https://visulima.com/packages/vis-mcp",
17
17
  "bugs": "https://github.com/visulima/visulima/issues",
18
+ "license": "MIT",
19
+ "author": {
20
+ "name": "Daniel Bannert",
21
+ "email": "d.bannert@anolilab.de"
22
+ },
18
23
  "repository": {
19
24
  "type": "git",
20
25
  "url": "git+https://github.com/visulima/visulima.git",
@@ -30,13 +35,17 @@
30
35
  "url": "https://anolilab.com/support"
31
36
  }
32
37
  ],
33
- "license": "MIT",
34
- "author": {
35
- "name": "Daniel Bannert",
36
- "email": "d.bannert@anolilab.de"
38
+ "bin": {
39
+ "vis-mcp": "./dist/bin.js"
37
40
  },
38
- "sideEffects": false,
41
+ "files": [
42
+ "dist/**",
43
+ "README.md",
44
+ "CHANGELOG.md",
45
+ "LICENSE.md"
46
+ ],
39
47
  "type": "module",
48
+ "sideEffects": false,
40
49
  "exports": {
41
50
  ".": {
42
51
  "types": "./dist/index.d.ts",
@@ -44,29 +53,20 @@
44
53
  },
45
54
  "./package.json": "./package.json"
46
55
  },
47
- "bin": {
48
- "vis-mcp": "./dist/bin.js"
56
+ "publishConfig": {
57
+ "access": "public",
58
+ "provenance": true
49
59
  },
50
- "files": [
51
- "dist/**",
52
- "README.md",
53
- "CHANGELOG.md",
54
- "LICENSE.md"
55
- ],
56
60
  "dependencies": {
57
61
  "@modelcontextprotocol/sdk": "^1.29.0",
58
- "@visulima/fs": "5.0.0",
62
+ "@visulima/fs": "5.0.2",
59
63
  "@visulima/path": "3.0.0",
60
64
  "zod": "4.4.3"
61
65
  },
62
66
  "peerDependencies": {
63
- "@visulima/vis": "1.0.0"
67
+ "@visulima/vis": "1.0.2"
64
68
  },
65
69
  "engines": {
66
70
  "node": "^22.14.0 || >=24.10.0"
67
- },
68
- "publishConfig": {
69
- "access": "public",
70
- "provenance": true
71
71
  }
72
72
  }