ellmos-filecommander-mcp 1.7.7 → 1.7.8

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 (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +69 -65
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)
package/package.json CHANGED
@@ -1,65 +1,69 @@
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.8",
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
+ "overrides": {
57
+ "hono": "^4.12.12",
58
+ "@hono/node-server": "^1.19.13"
59
+ },
60
+ "devDependencies": {
61
+ "@types/adm-zip": "^0.5.7",
62
+ "@types/js-yaml": "^4.0.9",
63
+ "@types/node": "^20.11.0",
64
+ "typescript": "^5.3.3"
65
+ },
66
+ "engines": {
67
+ "node": ">=18.0.0"
68
+ }
69
+ }