@n0zer0d4y/vulcan-file-ops 1.1.0 → 1.1.1
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 +11 -0
- package/README.md +1 -1
- package/package.json +27 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.1.1] - 2025-11-11
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Corrected Docker entrypoint to use dist/cli.js instead of dist/index.js for proper MCP server initialization
|
|
13
|
+
- Updated Node.js base image from node:22.12-alpine to node:22-alpine for better version compatibility
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Added keywords to package.json for improved NPM discoverability
|
|
18
|
+
|
|
8
19
|
## [1.1.0] - 2025-11-08
|
|
9
20
|
|
|
10
21
|
### Added
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Vulcan File Ops MCP Server
|
|
2
2
|
|
|
3
3
|

|
|
4
|
-
|
|
4
|
+

|
|
5
5
|
[](https://modelcontextprotocol.io)
|
|
6
6
|
[](https://modelcontextprotocol.io)
|
|
7
7
|
[](https://github.com/RichardLitt/standard-readme)
|
package/package.json
CHANGED
|
@@ -1,17 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n0zer0d4y/vulcan-file-ops",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "MCP server that gives Claude Desktop and other AI assistants filesystem superpowers—read, write, edit, and manage files like AI coding assistants",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Lloyd Barcatan",
|
|
7
7
|
"homepage": "https://github.com/n0zer0d4y/vulcan-file-ops",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/n0zer0d4y/vulcan-file-ops.git"
|
|
10
|
+
"url": "git+https://github.com/n0zer0d4y/vulcan-file-ops.git"
|
|
11
11
|
},
|
|
12
12
|
"bugs": {
|
|
13
13
|
"url": "https://github.com/n0zer0d4y/vulcan-file-ops/issues"
|
|
14
14
|
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"mcp",
|
|
17
|
+
"mcp-server",
|
|
18
|
+
"model-context-protocol",
|
|
19
|
+
"context-engineering",
|
|
20
|
+
"ai",
|
|
21
|
+
"ai-tools",
|
|
22
|
+
"claude",
|
|
23
|
+
"claude-desktop",
|
|
24
|
+
"filesystem",
|
|
25
|
+
"file-operations",
|
|
26
|
+
"file-management",
|
|
27
|
+
"read-files",
|
|
28
|
+
"write-files",
|
|
29
|
+
"edit-files",
|
|
30
|
+
"ai-assistant",
|
|
31
|
+
"llm",
|
|
32
|
+
"llm-tools",
|
|
33
|
+
"pdf",
|
|
34
|
+
"docx",
|
|
35
|
+
"document-parsing",
|
|
36
|
+
"code-editor",
|
|
37
|
+
"typescript",
|
|
38
|
+
"ai-assisted-coding"
|
|
39
|
+
],
|
|
15
40
|
"type": "module",
|
|
16
41
|
"bin": {
|
|
17
42
|
"vulcan-file-ops": "dist/cli.js"
|