@visulima/vis-mcp 1.0.0-alpha.1 → 1.0.0-alpha.3
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/CHANGELOG.md +20 -0
- package/README.md +10 -10
- package/package.json +20 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## @visulima/vis-mcp [1.0.0-alpha.3](https://github.com/visulima/visulima/compare/@visulima/vis-mcp@1.0.0-alpha.2...@visulima/vis-mcp@1.0.0-alpha.3) (2026-05-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Dependencies
|
|
5
|
+
|
|
6
|
+
* **@visulima/fs:** upgraded to 5.0.0-alpha.15
|
|
7
|
+
* **@visulima/vis:** upgraded to 1.0.0-alpha.13
|
|
8
|
+
|
|
9
|
+
## @visulima/vis-mcp [1.0.0-alpha.2](https://github.com/visulima/visulima/compare/@visulima/vis-mcp@1.0.0-alpha.1...@visulima/vis-mcp@1.0.0-alpha.2) (2026-05-06)
|
|
10
|
+
|
|
11
|
+
### Miscellaneous Chores
|
|
12
|
+
|
|
13
|
+
* **vis-mcp:** housekeeping cleanup ([947eff5](https://github.com/visulima/visulima/commit/947eff503b5e170194f7f8e21bea2ab82b0786bf))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
* **@visulima/fs:** upgraded to 5.0.0-alpha.14
|
|
19
|
+
* **@visulima/vis:** upgraded to 1.0.0-alpha.12
|
|
20
|
+
|
|
1
21
|
## @visulima/vis-mcp 1.0.0-alpha.1 (2026-05-04)
|
|
2
22
|
|
|
3
23
|
### Features
|
package/README.md
CHANGED
|
@@ -87,16 +87,16 @@ Add the server to `~/Library/Application Support/Claude/claude_desktop_config.js
|
|
|
87
87
|
|
|
88
88
|
All eight tools are read-only. The agent prepares commands; a human runs them.
|
|
89
89
|
|
|
90
|
-
| Tool | What it does
|
|
91
|
-
| ------------------- |
|
|
92
|
-
| `list_projects` | List all workspace projects, optionally filtered by a vis query string.
|
|
93
|
-
| `describe_project` | Return full metadata for one project (language, layer, stack, targets).
|
|
94
|
-
| `list_targets` | Flatten projects into per-target rows; optionally narrow to one project.
|
|
95
|
-
| `list_templates` | List scaffolding templates discovered in the workspace, with source and one-line description.
|
|
96
|
-
| `describe_template` | Return template metadata: description, default destination, and the variable schema for `vis generate
|
|
97
|
-
| `get_run_logs` | Read a run summary from `.task-runner/`; optionally filter to one task.
|
|
98
|
-
| `cache_why` | Diff a task's hash inputs against the previous run to explain a rotation.
|
|
99
|
-
| `cache_hash` | Print the recorded hash and per-input hash details for a task.
|
|
90
|
+
| Tool | What it does |
|
|
91
|
+
| ------------------- | ------------------------------------------------------------------------------------------------------- |
|
|
92
|
+
| `list_projects` | List all workspace projects, optionally filtered by a vis query string. |
|
|
93
|
+
| `describe_project` | Return full metadata for one project (language, layer, stack, targets). |
|
|
94
|
+
| `list_targets` | Flatten projects into per-target rows; optionally narrow to one project. |
|
|
95
|
+
| `list_templates` | List scaffolding templates discovered in the workspace, with source and one-line description. |
|
|
96
|
+
| `describe_template` | Return template metadata: description, default destination, and the variable schema for `vis generate`. |
|
|
97
|
+
| `get_run_logs` | Read a run summary from `.task-runner/`; optionally filter to one task. |
|
|
98
|
+
| `cache_why` | Diff a task's hash inputs against the previous run to explain a rotation. |
|
|
99
|
+
| `cache_hash` | Print the recorded hash and per-input hash details for a task. |
|
|
100
100
|
|
|
101
101
|
## Related
|
|
102
102
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/vis-mcp",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.3",
|
|
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",
|
|
@@ -17,6 +17,11 @@
|
|
|
17
17
|
"bugs": {
|
|
18
18
|
"url": "https://github.com/visulima/visulima/issues"
|
|
19
19
|
},
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"author": {
|
|
22
|
+
"name": "Daniel Bannert",
|
|
23
|
+
"email": "d.bannert@anolilab.de"
|
|
24
|
+
},
|
|
20
25
|
"repository": {
|
|
21
26
|
"type": "git",
|
|
22
27
|
"url": "git+https://github.com/visulima/visulima.git",
|
|
@@ -32,13 +37,17 @@
|
|
|
32
37
|
"url": "https://anolilab.com/support"
|
|
33
38
|
}
|
|
34
39
|
],
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
"name": "Daniel Bannert",
|
|
38
|
-
"email": "d.bannert@anolilab.de"
|
|
40
|
+
"bin": {
|
|
41
|
+
"vis-mcp": "./dist/bin.js"
|
|
39
42
|
},
|
|
40
|
-
"
|
|
43
|
+
"files": [
|
|
44
|
+
"dist/**",
|
|
45
|
+
"README.md",
|
|
46
|
+
"CHANGELOG.md",
|
|
47
|
+
"LICENSE.md"
|
|
48
|
+
],
|
|
41
49
|
"type": "module",
|
|
50
|
+
"sideEffects": false,
|
|
42
51
|
"exports": {
|
|
43
52
|
".": {
|
|
44
53
|
"types": "./dist/index.d.ts",
|
|
@@ -46,29 +55,20 @@
|
|
|
46
55
|
},
|
|
47
56
|
"./package.json": "./package.json"
|
|
48
57
|
},
|
|
49
|
-
"
|
|
50
|
-
"
|
|
58
|
+
"publishConfig": {
|
|
59
|
+
"access": "public",
|
|
60
|
+
"provenance": true
|
|
51
61
|
},
|
|
52
|
-
"files": [
|
|
53
|
-
"dist/**",
|
|
54
|
-
"README.md",
|
|
55
|
-
"CHANGELOG.md",
|
|
56
|
-
"LICENSE.md"
|
|
57
|
-
],
|
|
58
62
|
"dependencies": {
|
|
59
63
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
60
|
-
"@visulima/fs": "5.0.0-alpha.
|
|
64
|
+
"@visulima/fs": "5.0.0-alpha.15",
|
|
61
65
|
"@visulima/path": "3.0.0-alpha.10",
|
|
62
66
|
"zod": "4.4.3"
|
|
63
67
|
},
|
|
64
68
|
"peerDependencies": {
|
|
65
|
-
"@visulima/vis": "1.0.0-alpha.
|
|
69
|
+
"@visulima/vis": "1.0.0-alpha.13"
|
|
66
70
|
},
|
|
67
71
|
"engines": {
|
|
68
72
|
"node": "^22.14.0 || >=24.10.0"
|
|
69
|
-
},
|
|
70
|
-
"publishConfig": {
|
|
71
|
-
"access": "public",
|
|
72
|
-
"provenance": true
|
|
73
73
|
}
|
|
74
74
|
}
|