bach-filecommander-mcp 1.3.0 → 1.4.0

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 CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [1.4.0] - 2026-02-14
6
+
7
+ ### Added
8
+ - `fc_fix_json` - Repair common JSON errors (BOM, trailing commas, single quotes, comments, NUL bytes)
9
+ - `fc_validate_json` - Validate JSON with detailed error position and context
10
+ - `fc_cleanup_file` - Clean files: remove BOM, NUL bytes, trailing whitespace, normalize line endings
11
+ - `fc_fix_encoding` - Fix Mojibake and double-encoded UTF-8 (27+ patterns for German, French, Spanish)
12
+ - `fc_folder_diff` - Track directory changes (new/modified/deleted files) with snapshots
13
+ - `fc_batch_rename` - Pattern-based batch renaming (prefix/suffix removal, replace, auto-detect)
14
+ - `fc_convert_format` - Convert between JSON, CSV, and INI formats
15
+ - `fc_detect_duplicates` - Find duplicate files using SHA-256 hashing with size pre-filter
16
+ - `fc_md_to_html` - Convert Markdown to styled HTML (printable as PDF via browser)
17
+ - Total tools: 38
18
+
5
19
  ## [1.3.0] - 2026-02-14
6
20
 
7
21
  ### Changed
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  A comprehensive **Model Context Protocol (MCP) server** that gives AI assistants full filesystem access, process management, interactive shell sessions, and async file search capabilities.
8
8
 
9
- **29 tools** in a single server - everything an AI agent needs to interact with the local system.
9
+ **38 tools** in a single server - everything an AI agent needs to interact with the local system.
10
10
 
11
11
  ---
12
12
 
@@ -139,13 +139,32 @@ The server communicates via **stdio transport**. Point your MCP client to the `d
139
139
  | `fc_list_sessions` | List all sessions |
140
140
  | `fc_close_session` | Terminate a session |
141
141
 
142
+ ### File Maintenance & Repair (8 tools) - NEW in v1.4.0
143
+
144
+ | Tool | Description |
145
+ |------|-------------|
146
+ | `fc_fix_json` | Repair broken JSON (BOM, trailing commas, comments, single quotes) |
147
+ | `fc_validate_json` | Validate JSON with detailed error position and context |
148
+ | `fc_cleanup_file` | Remove BOM, NUL bytes, trailing whitespace, normalize line endings |
149
+ | `fc_fix_encoding` | Fix Mojibake / double-encoded UTF-8 (27+ character patterns) |
150
+ | `fc_folder_diff` | Track directory changes with snapshots (new/modified/deleted) |
151
+ | `fc_batch_rename` | Pattern-based batch renaming (prefix/suffix, replace, auto-detect) |
152
+ | `fc_convert_format` | Convert between JSON, CSV, and INI formats |
153
+ | `fc_detect_duplicates` | Find duplicate files using SHA-256 hashing |
154
+
142
155
  ### System (1 tool)
143
156
 
144
157
  | Tool | Description |
145
158
  |------|-------------|
146
159
  | `fc_get_time` | Get current system time with timezone info |
147
160
 
148
- **Total: 29 tools**
161
+ ### Export (1 tool) - NEW in v1.4.0
162
+
163
+ | Tool | Description |
164
+ |------|-------------|
165
+ | `fc_md_to_html` | Convert Markdown to styled HTML (printable as PDF) |
166
+
167
+ **Total: 38 tools**
149
168
 
150
169
  ---
151
170
 
@@ -161,16 +180,24 @@ The server communicates via **stdio transport**. Point your MCP client to the `d
161
180
  | Shell command execution | Yes | Yes | No |
162
181
  | String replace with validation | Yes | Yes | No |
163
182
  | Line-based file editing | Yes | No | No |
183
+ | JSON repair & validation | 2 tools | No | No |
184
+ | Encoding fix (Mojibake) | Yes | No | No |
185
+ | Duplicate detection (SHA-256) | Yes | No | No |
186
+ | Folder diff / change tracking | Yes | No | No |
187
+ | Batch rename (pattern-based) | Yes | No | No |
188
+ | Format conversion (JSON/CSV/INI) | Yes | No | No |
164
189
  | Path allowlist / sandboxing | No | No | Yes |
165
190
  | Excel / PDF support | No | Yes | No |
166
191
  | HTTP transport | No | No | No |
167
- | **Total tools** | **29** | ~15 | ~11 |
192
+ | Markdown to HTML export | Yes | No | No |
193
+ | **Total tools** | **38** | ~15 | ~11 |
168
194
  | **Servers needed** | **1** | 1 | + extra for processes |
169
195
 
170
196
  **Key differentiators:**
171
197
  - Only MCP server with **recoverable delete** (Recycle Bin / Trash)
172
198
  - Only MCP server with **async background search** with pagination
173
- - Most comprehensive single-server solution (29 tools)
199
+ - Built-in **JSON repair**, **encoding fix**, and **duplicate detection**
200
+ - Most comprehensive single-server solution (38 tools)
174
201
 
175
202
  ---
176
203
 
package/dist/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  * See LICENSE file for details.
10
10
  *
11
11
  * @author Lukas (BACH)
12
- * @version 1.3.0
12
+ * @version 1.4.0
13
13
  * @license MIT
14
14
  */
15
15
  export {};