ellmos-filecommander-mcp 1.7.8 → 1.7.9

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,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [1.7.9] - 2026-05-17
6
+
7
+ ### Added
8
+ - Comprehensive test suite with 136 tests covering all 43 tools (vitest)
9
+ - Cross-platform compatibility verified on Windows, macOS, and Linux
10
+ - Development/Testing section in README.md and README_de.md
11
+
5
12
  ## [1.7.2] - 2026-02-20
6
13
 
7
14
  ### Fixed
package/README.md CHANGED
@@ -153,7 +153,7 @@ The server communicates via **stdio transport**. Point your MCP client to the `d
153
153
  | `fc_list_sessions` | List all sessions |
154
154
  | `fc_close_session` | Terminate a session |
155
155
 
156
- ### File Maintenance & Repair (8 tools)
156
+ ### File Maintenance & Repair (9 tools)
157
157
 
158
158
  | Tool | Description |
159
159
  |------|-------------|
@@ -269,8 +269,23 @@ npm run build
269
269
 
270
270
  # Start the server
271
271
  npm start
272
+
273
+ # Run test suite
274
+ npm test
272
275
  ```
273
276
 
277
+ ### Testing
278
+
279
+ The project includes a comprehensive test suite with **136 tests** covering filesystem operations, format conversion, encoding repair, archive handling, duplicate detection, and more.
280
+
281
+ ```bash
282
+ npm test # Run all tests
283
+ npx vitest run # Same as above
284
+ npx vitest --watch # Watch mode
285
+ ```
286
+
287
+ Tests are verified on **Windows**, **macOS**, and **Linux**.
288
+
274
289
  See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines.
275
290
 
276
291
  ---
@@ -328,3 +343,14 @@ This MCP server is part of the **[ellmos-ai](https://github.com/ellmos-ai)** eco
328
343
  ### Desktop Software
329
344
 
330
345
  Our partner organization **[open-bricks](https://github.com/open-bricks)** bundles AI-native desktop applications — a modern, open-source software suite built for the age of AI. Categories include file management, document tools, developer utilities, and more.
346
+
347
+ ---
348
+
349
+ ## Haftung / Liability
350
+
351
+ Dieses Projekt ist eine **unentgeltliche Open-Source-Schenkung** im Sinne der §§ 516 ff. BGB. Die Haftung des Urhebers ist gemäß **§ 521 BGB** auf **Vorsatz und grobe Fahrlässigkeit** beschränkt. Ergänzend gelten die Haftungsausschlüsse aus GPL-3.0 / MIT / Apache-2.0 §§ 15–16 (je nach gewählter Lizenz).
352
+
353
+ Nutzung auf eigenes Risiko. Keine Wartungszusage, keine Verfügbarkeitsgarantie, keine Gewähr für Fehlerfreiheit oder Eignung für einen bestimmten Zweck.
354
+
355
+ This project is an unpaid open-source donation. Liability is limited to intent and gross negligence (§ 521 German Civil Code). Use at your own risk. No warranty, no maintenance guarantee, no fitness-for-purpose assumed.
356
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ellmos-filecommander-mcp",
3
- "version": "1.7.8",
3
+ "version": "1.7.9",
4
4
  "mcpName": "io.github.ellmos-ai/ellmos-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",
@@ -20,6 +20,7 @@
20
20
  "build": "node node_modules/typescript/bin/tsc",
21
21
  "start": "node dist/index.js",
22
22
  "dev": "tsc --watch",
23
+ "test": "vitest run",
23
24
  "prepublishOnly": "npm run build"
24
25
  },
25
26
  "keywords": [
@@ -61,7 +62,8 @@
61
62
  "@types/adm-zip": "^0.5.7",
62
63
  "@types/js-yaml": "^4.0.9",
63
64
  "@types/node": "^20.11.0",
64
- "typescript": "^5.3.3"
65
+ "typescript": "^5.3.3",
66
+ "vitest": "^3.1.3"
65
67
  },
66
68
  "engines": {
67
69
  "node": ">=18.0.0"