bach-filecommander-mcp 1.7.1 → 1.7.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 +50 -0
- package/README.md +1 -1
- package/SECURITY.md +11 -6
- package/THIRD_PARTY_NOTICES.md +23 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,56 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.7.2] - 2026-02-20
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- Update CHANGELOG with 5 missing version entries (v1.5.0-v1.7.1)
|
|
9
|
+
- Fix server.json version mismatch
|
|
10
|
+
- Update SECURITY.md supported versions (1.3.x -> 1.7.x)
|
|
11
|
+
- Add missing runtime dependencies to THIRD_PARTY_NOTICES.md
|
|
12
|
+
- Remove stale "NEW in v1.4.0" label from README
|
|
13
|
+
|
|
14
|
+
## [1.7.1] - 2026-02-17
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- Replace custom TOON parser/serializer with official `@toon-format/toon` package
|
|
18
|
+
- Proper TOON format: `key: value` syntax instead of custom `key = value`
|
|
19
|
+
|
|
20
|
+
## [1.7.0] - 2026-02-17
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- `fc_ocr` - Extract text from images via optional tesseract.js dependency
|
|
24
|
+
- `fc_archive` - Create, extract, and list ZIP archives (via adm-zip)
|
|
25
|
+
- `fc_checksum` - File hashing (MD5, SHA-1, SHA-256, SHA-512) with optional compare
|
|
26
|
+
- `fc_set_safe_mode` - Toggle safety mode: route all deletes through Recycle Bin / Trash
|
|
27
|
+
- Expand `fc_convert_format`: add YAML, TOML, XML, and TOON support (was JSON/CSV/INI only)
|
|
28
|
+
- Full i18n (DE/EN) for all new tools
|
|
29
|
+
- Total tools: 43
|
|
30
|
+
|
|
31
|
+
## [1.6.1] - 2026-02-17
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
- `mcpName` field in package.json for MCP Registry verification
|
|
35
|
+
- `server.json` for official MCP Registry publishing
|
|
36
|
+
|
|
37
|
+
## [1.6.0] - 2026-02-17
|
|
38
|
+
|
|
39
|
+
### Added
|
|
40
|
+
- `fc_md_to_pdf` - Real PDF generation via headless Edge/Chrome browser
|
|
41
|
+
- Cross-platform browser detection (Windows, macOS, Linux)
|
|
42
|
+
- Fallback to HTML output if no browser is available
|
|
43
|
+
- Total tools: 39
|
|
44
|
+
|
|
45
|
+
## [1.5.0] - 2026-02-15
|
|
46
|
+
|
|
47
|
+
### Added
|
|
48
|
+
- Complete internationalization (i18n) infrastructure with German (default) and English support
|
|
49
|
+
- New `fc_set_language` tool for runtime language switching
|
|
50
|
+
- `FC_LANGUAGE` environment variable for startup configuration
|
|
51
|
+
- ~270 translated strings (tool titles, descriptions, error messages, weekdays)
|
|
52
|
+
- i18n test suite (66 tests)
|
|
53
|
+
- Language priority: `fc_set_language` > `FC_LANGUAGE` env > `"de"` default
|
|
54
|
+
|
|
5
55
|
## [1.4.1] - 2026-02-14
|
|
6
56
|
|
|
7
57
|
### Fixed
|
package/README.md
CHANGED
|
@@ -145,7 +145,7 @@ The server communicates via **stdio transport**. Point your MCP client to the `d
|
|
|
145
145
|
| `fc_list_sessions` | List all sessions |
|
|
146
146
|
| `fc_close_session` | Terminate a session |
|
|
147
147
|
|
|
148
|
-
### File Maintenance & Repair (8 tools)
|
|
148
|
+
### File Maintenance & Repair (8 tools)
|
|
149
149
|
|
|
150
150
|
| Tool | Description |
|
|
151
151
|
|------|-------------|
|
package/SECURITY.md
CHANGED
|
@@ -16,16 +16,21 @@ By design, this server provides LLMs with powerful system access capabilities. P
|
|
|
16
16
|
| `fc_delete_file` | **High** | Permanently deletes files (no recycle bin) |
|
|
17
17
|
| `fc_delete_directory` | **High** | Recursively deletes directories |
|
|
18
18
|
| `fc_write_file` | **Medium** | Can overwrite any accessible file |
|
|
19
|
+
| `fc_ocr` | **Low** | Reads images (optional tesseract.js) |
|
|
20
|
+
| `fc_archive` | **Medium** | Creates/extracts ZIP archives |
|
|
21
|
+
| `fc_checksum` | **Low** | Computes file hashes (read-only) |
|
|
19
22
|
|
|
20
23
|
### Recommendations
|
|
21
24
|
|
|
22
|
-
1. **
|
|
25
|
+
1. **Enable Safety Mode** via `fc_set_safe_mode(true)` to route all delete operations through Recycle Bin / Trash automatically.
|
|
23
26
|
|
|
24
|
-
2. **
|
|
27
|
+
2. **Use `fc_safe_delete`** instead of `fc_delete_file`/`fc_delete_directory` when possible - it moves items to the Recycle Bin instead of permanent deletion.
|
|
25
28
|
|
|
26
|
-
3. **
|
|
29
|
+
3. **Be cautious with `fc_execute_command`** - it runs commands with your full user permissions. Review commands before approving execution in your MCP client.
|
|
27
30
|
|
|
28
|
-
4. **
|
|
31
|
+
4. **Do not expose this server to untrusted networks.** It is designed for local use via stdio transport only.
|
|
32
|
+
|
|
33
|
+
5. **Review your MCP client's approval settings.** Most MCP clients (like Claude Desktop) prompt before executing destructive operations. Keep these prompts enabled.
|
|
29
34
|
|
|
30
35
|
### No Sandbox
|
|
31
36
|
|
|
@@ -45,5 +50,5 @@ If you discover a security vulnerability, please open an issue on the GitHub rep
|
|
|
45
50
|
|
|
46
51
|
| Version | Supported |
|
|
47
52
|
|---------|-----------|
|
|
48
|
-
| 1.
|
|
49
|
-
| < 1.
|
|
53
|
+
| 1.7.x | Yes |
|
|
54
|
+
| < 1.7 | No |
|
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -14,6 +14,29 @@ This project uses the following third-party packages:
|
|
|
14
14
|
- **Copyright:** Copyright (c) Colin McDonnell
|
|
15
15
|
- **Repository:** https://github.com/colinhacks/zod
|
|
16
16
|
|
|
17
|
+
### adm-zip
|
|
18
|
+
- **License:** MIT
|
|
19
|
+
- **Copyright:** Copyright (c) 2012 Another-D-Mention Software and other contributors
|
|
20
|
+
- **Repository:** https://github.com/cthackers/adm-zip
|
|
21
|
+
|
|
22
|
+
### js-yaml
|
|
23
|
+
- **License:** MIT
|
|
24
|
+
- **Copyright:** Copyright (c) 2011-2015 by Vitaly Puzrin
|
|
25
|
+
- **Repository:** https://github.com/nodeca/js-yaml
|
|
26
|
+
|
|
27
|
+
### smol-toml
|
|
28
|
+
- **License:** MIT
|
|
29
|
+
- **Repository:** https://github.com/nicolo-ribaudo/smol-toml
|
|
30
|
+
|
|
31
|
+
### fast-xml-parser
|
|
32
|
+
- **License:** MIT
|
|
33
|
+
- **Copyright:** Copyright (c) 2017 Amit Kumar Gupta
|
|
34
|
+
- **Repository:** https://github.com/NaturalIntelligence/fast-xml-parser
|
|
35
|
+
|
|
36
|
+
### @toon-format/toon
|
|
37
|
+
- **License:** MIT
|
|
38
|
+
- **Repository:** https://github.com/nicfontaine/toon
|
|
39
|
+
|
|
17
40
|
## Development Dependencies
|
|
18
41
|
|
|
19
42
|
### typescript
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bach-filecommander-mcp",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.3",
|
|
4
4
|
"mcpName": "io.github.lukisch/bach-filecommander-mcp",
|
|
5
5
|
"description": "A comprehensive MCP server providing 43 tools for filesystem operations, process management, interactive sessions, async file search, JSON repair, encoding fix, duplicate detection, OCR, ZIP archives, and Markdown export",
|
|
6
6
|
"type": "module",
|