@n0zer0d4y/vulcan-file-ops 1.1.5 → 1.1.6
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 +13 -0
- package/README.md +13 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ 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.6] - 2025-11-16
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- README.md Configuration Examples: Corrected all `--approved-folders` examples to use separate array elements instead of comma-separated strings within quotes. This fixes setup failures for users with spaces in directory paths.
|
|
13
|
+
- Before: `"C:/Users/username/projects,C:/Users/username/documents"` (breaks with spaces)
|
|
14
|
+
- After: `"C:/Users/username/projects", "C:/Users/username/documents"` (works with spaces)
|
|
15
|
+
- Added clear guidance for paths containing spaces in MCP configuration
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Updated all README configuration examples to use the correct array element format for better user experience
|
|
20
|
+
|
|
8
21
|
## [1.1.5] - 2025-11-15
|
|
9
22
|
|
|
10
23
|
### Added
|
package/README.md
CHANGED
|
@@ -61,7 +61,7 @@ This enhanced implementation provides:
|
|
|
61
61
|
- **Advanced File Editing**: Pattern-based modifications with flexible matching and diff preview
|
|
62
62
|
- **Flexible Reading Modes**: Full file, head/tail, or arbitrary line ranges
|
|
63
63
|
- **Image Vision Support**: Attach images for AI analysis and description
|
|
64
|
-
- **Directory Filtering**: Exclude unwanted folders (node_modules, dist, .git) from listings
|
|
64
|
+
- **Directory Filtering**: Exclude unwanted folders (node_modules, dist, .git) from listings as list_directory tool can bloat server output if these types folders, normally gitignored, are included
|
|
65
65
|
- **Selective Tool Activation**: Enable only specific tools or tool categories
|
|
66
66
|
- **High Performance**: Optimized search algorithms with smart recursion detection
|
|
67
67
|
- **Security Controls**: Path validation, access restrictions, and shell command approval
|
|
@@ -209,7 +209,8 @@ Pre-configure specific directories for immediate access on server start:
|
|
|
209
209
|
"args": [
|
|
210
210
|
"@n0zer0d4y/vulcan-file-ops",
|
|
211
211
|
"--approved-folders",
|
|
212
|
-
"/Users/username/projects
|
|
212
|
+
"/Users/username/projects",
|
|
213
|
+
"/Users/username/documents"
|
|
213
214
|
]
|
|
214
215
|
}
|
|
215
216
|
}
|
|
@@ -226,7 +227,8 @@ Pre-configure specific directories for immediate access on server start:
|
|
|
226
227
|
"args": [
|
|
227
228
|
"@n0zer0d4y/vulcan-file-ops",
|
|
228
229
|
"--approved-folders",
|
|
229
|
-
"C:/Users/username/projects,
|
|
230
|
+
"C:/Users/username/projects",
|
|
231
|
+
"C:/Users/username/documents"
|
|
230
232
|
]
|
|
231
233
|
}
|
|
232
234
|
}
|
|
@@ -244,7 +246,8 @@ For users running from a cloned repository (after `npm run build`):
|
|
|
244
246
|
"command": "vulcan-file-ops",
|
|
245
247
|
"args": [
|
|
246
248
|
"--approved-folders",
|
|
247
|
-
"/Users/username/projects
|
|
249
|
+
"/Users/username/projects",
|
|
250
|
+
"/Users/username/documents"
|
|
248
251
|
]
|
|
249
252
|
}
|
|
250
253
|
}
|
|
@@ -360,7 +363,8 @@ All configuration options can be combined:
|
|
|
360
363
|
"args": [
|
|
361
364
|
"@n0zer0d4y/vulcan-file-ops",
|
|
362
365
|
"--approved-folders",
|
|
363
|
-
"C:/Users/username/projects
|
|
366
|
+
"C:/Users/username/projects",
|
|
367
|
+
"C:/Users/username/documents",
|
|
364
368
|
"--ignored-folders",
|
|
365
369
|
"node_modules,dist,.git",
|
|
366
370
|
"--approved-commands",
|
|
@@ -385,7 +389,8 @@ All configuration options can be combined:
|
|
|
385
389
|
"args": [
|
|
386
390
|
"@n0zer0d4y/vulcan-file-ops",
|
|
387
391
|
"--approved-folders",
|
|
388
|
-
"/Users/username/projects
|
|
392
|
+
"/Users/username/projects",
|
|
393
|
+
"/Users/username/documents",
|
|
389
394
|
"--ignored-folders",
|
|
390
395
|
"node_modules,dist,.git",
|
|
391
396
|
"--approved-commands",
|
|
@@ -411,7 +416,8 @@ For users running from a cloned repository (after `npm run build`):
|
|
|
411
416
|
"command": "vulcan-file-ops",
|
|
412
417
|
"args": [
|
|
413
418
|
"--approved-folders",
|
|
414
|
-
"/Users/username/projects
|
|
419
|
+
"/Users/username/projects",
|
|
420
|
+
"/Users/username/documents",
|
|
415
421
|
"--ignored-folders",
|
|
416
422
|
"node_modules,dist,.git",
|
|
417
423
|
"--approved-commands",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n0zer0d4y/vulcan-file-ops",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"mcpName": "io.github.n0zer0d4y/vulcan-file-ops",
|
|
5
5
|
"description": "MCP server for AI assistants: read, write, edit, and manage files securely on local filesystem.",
|
|
6
6
|
"license": "MIT",
|