ellmos-filecommander-mcp 1.7.7 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +30 -2
  3. package/package.json +71 -65
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
@@ -1,9 +1,11 @@
1
1
  <p align="center">
2
- <img src="filecommander_banner.jpg" alt="FileCommander banner" width="700">
2
+ <img src="assets/filecommander_banner.jpg" alt="FileCommander banner" width="700">
3
3
  </p>
4
4
 
5
5
  # ellmos FileCommander MCP Server
6
6
 
7
+ **🇩🇪 [Deutsche Version](README_de.md)**
8
+
7
9
  *Part of the [ellmos-ai](https://github.com/ellmos-ai) family.*
8
10
 
9
11
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
@@ -151,7 +153,7 @@ The server communicates via **stdio transport**. Point your MCP client to the `d
151
153
  | `fc_list_sessions` | List all sessions |
152
154
  | `fc_close_session` | Terminate a session |
153
155
 
154
- ### File Maintenance & Repair (8 tools)
156
+ ### File Maintenance & Repair (9 tools)
155
157
 
156
158
  | Tool | Description |
157
159
  |------|-------------|
@@ -267,8 +269,23 @@ npm run build
267
269
 
268
270
  # Start the server
269
271
  npm start
272
+
273
+ # Run test suite
274
+ npm test
275
+ ```
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
270
285
  ```
271
286
 
287
+ Tests are verified on **Windows**, **macOS**, and **Linux**.
288
+
272
289
  See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines.
273
290
 
274
291
  ---
@@ -326,3 +343,14 @@ This MCP server is part of the **[ellmos-ai](https://github.com/ellmos-ai)** eco
326
343
  ### Desktop Software
327
344
 
328
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,65 +1,71 @@
1
- {
2
- "name": "ellmos-filecommander-mcp",
3
- "version": "1.7.7",
4
- "mcpName": "io.github.ellmos-ai/ellmos-filecommander-mcp",
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
- "type": "module",
7
- "main": "dist/index.js",
8
- "bin": {
9
- "ellmos-filecommander": "dist/index.js"
10
- },
11
- "files": [
12
- "dist/",
13
- "LICENSE",
14
- "README.md",
15
- "CHANGELOG.md",
16
- "SECURITY.md",
17
- "THIRD_PARTY_NOTICES.md"
18
- ],
19
- "scripts": {
20
- "build": "node node_modules/typescript/bin/tsc",
21
- "start": "node dist/index.js",
22
- "dev": "tsc --watch",
23
- "prepublishOnly": "npm run build"
24
- },
25
- "keywords": [
26
- "mcp",
27
- "model-context-protocol",
28
- "claude",
29
- "filesystem",
30
- "file-management",
31
- "process-management",
32
- "mcp-server",
33
- "ai-tools",
34
- "claude-desktop",
35
- "bach"
36
- ],
37
- "author": "Lukas (BACH)",
38
- "license": "MIT",
39
- "repository": {
40
- "type": "git",
41
- "url": "https://github.com/ellmos-ai/ellmos-filecommander-mcp.git"
42
- },
43
- "bugs": {
44
- "url": "https://github.com/ellmos-ai/ellmos-filecommander-mcp/issues"
45
- },
46
- "homepage": "https://github.com/ellmos-ai/ellmos-filecommander-mcp#readme",
47
- "dependencies": {
48
- "@modelcontextprotocol/sdk": "^1.0.0",
49
- "@toon-format/toon": "^2.1.0",
50
- "adm-zip": "^0.5.16",
51
- "fast-xml-parser": "^5.3.6",
52
- "js-yaml": "^4.1.1",
53
- "smol-toml": "^1.6.0",
54
- "zod": "^3.23.8"
55
- },
56
- "devDependencies": {
57
- "@types/adm-zip": "^0.5.7",
58
- "@types/js-yaml": "^4.0.9",
59
- "@types/node": "^20.11.0",
60
- "typescript": "^5.3.3"
61
- },
62
- "engines": {
63
- "node": ">=18.0.0"
64
- }
65
- }
1
+ {
2
+ "name": "ellmos-filecommander-mcp",
3
+ "version": "1.7.9",
4
+ "mcpName": "io.github.ellmos-ai/ellmos-filecommander-mcp",
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
+ "type": "module",
7
+ "main": "dist/index.js",
8
+ "bin": {
9
+ "ellmos-filecommander": "dist/index.js"
10
+ },
11
+ "files": [
12
+ "dist/",
13
+ "LICENSE",
14
+ "README.md",
15
+ "CHANGELOG.md",
16
+ "SECURITY.md",
17
+ "THIRD_PARTY_NOTICES.md"
18
+ ],
19
+ "scripts": {
20
+ "build": "node node_modules/typescript/bin/tsc",
21
+ "start": "node dist/index.js",
22
+ "dev": "tsc --watch",
23
+ "test": "vitest run",
24
+ "prepublishOnly": "npm run build"
25
+ },
26
+ "keywords": [
27
+ "mcp",
28
+ "model-context-protocol",
29
+ "claude",
30
+ "filesystem",
31
+ "file-management",
32
+ "process-management",
33
+ "mcp-server",
34
+ "ai-tools",
35
+ "claude-desktop",
36
+ "bach"
37
+ ],
38
+ "author": "Lukas (BACH)",
39
+ "license": "MIT",
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "https://github.com/ellmos-ai/ellmos-filecommander-mcp.git"
43
+ },
44
+ "bugs": {
45
+ "url": "https://github.com/ellmos-ai/ellmos-filecommander-mcp/issues"
46
+ },
47
+ "homepage": "https://github.com/ellmos-ai/ellmos-filecommander-mcp#readme",
48
+ "dependencies": {
49
+ "@modelcontextprotocol/sdk": "^1.0.0",
50
+ "@toon-format/toon": "^2.1.0",
51
+ "adm-zip": "^0.5.16",
52
+ "fast-xml-parser": "^5.3.6",
53
+ "js-yaml": "^4.1.1",
54
+ "smol-toml": "^1.6.0",
55
+ "zod": "^3.23.8"
56
+ },
57
+ "overrides": {
58
+ "hono": "^4.12.12",
59
+ "@hono/node-server": "^1.19.13"
60
+ },
61
+ "devDependencies": {
62
+ "@types/adm-zip": "^0.5.7",
63
+ "@types/js-yaml": "^4.0.9",
64
+ "@types/node": "^20.11.0",
65
+ "typescript": "^5.3.3",
66
+ "vitest": "^3.1.3"
67
+ },
68
+ "engines": {
69
+ "node": ">=18.0.0"
70
+ }
71
+ }