ellmos-filecommander-mcp 1.7.6 → 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.
- package/README.md +34 -1
- 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
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -295,3 +297,34 @@ The old npm package [`bach-filecommander-mcp`](https://www.npmjs.com/package/bac
|
|
|
295
297
|
npm uninstall -g bach-filecommander-mcp
|
|
296
298
|
npm install -g ellmos-filecommander-mcp
|
|
297
299
|
```
|
|
300
|
+
|
|
301
|
+
---
|
|
302
|
+
|
|
303
|
+
## ellmos-ai Ecosystem
|
|
304
|
+
|
|
305
|
+
This MCP server is part of the **[ellmos-ai](https://github.com/ellmos-ai)** ecosystem — AI infrastructure, MCP servers, and intelligent tools.
|
|
306
|
+
|
|
307
|
+
### MCP Server Family
|
|
308
|
+
|
|
309
|
+
| Server | Tools | Focus | npm |
|
|
310
|
+
|--------|-------|-------|-----|
|
|
311
|
+
| **[FileCommander](https://github.com/ellmos-ai/ellmos-filecommander-mcp)** | **43** | **Filesystem, process management, interactive sessions** | `ellmos-filecommander-mcp` |
|
|
312
|
+
| [CodeCommander](https://github.com/ellmos-ai/ellmos-codecommander-mcp) | 17 | Code analysis, AST parsing, import management | `ellmos-codecommander-mcp` |
|
|
313
|
+
| [Clatcher](https://github.com/ellmos-ai/ellmos-clatcher-mcp) | 12 | File repair, format conversion, batch operations | `ellmos-clatcher-mcp` |
|
|
314
|
+
| [n8n Manager](https://github.com/ellmos-ai/n8n-manager-mcp) | 13 | n8n workflow management via AI assistants | `n8n-manager-mcp` |
|
|
315
|
+
|
|
316
|
+
### AI Infrastructure
|
|
317
|
+
|
|
318
|
+
| Project | Description |
|
|
319
|
+
|---------|-------------|
|
|
320
|
+
| [BACH](https://github.com/ellmos-ai/bach) | Text-based OS for LLMs — 109+ handlers, 373+ tools, 932+ skills |
|
|
321
|
+
| [clutch](https://github.com/ellmos-ai/clutch) | Provider-neutral LLM orchestration with auto-routing and budget tracking |
|
|
322
|
+
| [rinnsal](https://github.com/ellmos-ai/rinnsal) | Lightweight agent memory, connectors, and automation infrastructure |
|
|
323
|
+
| [ellmos-stack](https://github.com/ellmos-ai/ellmos-stack) | Self-hosted AI research stack (Ollama + n8n + Rinnsal + KnowledgeDigest) |
|
|
324
|
+
| [MarbleRun](https://github.com/ellmos-ai/MarbleRun) | Autonomous agent chain framework for Claude Code |
|
|
325
|
+
| [gardener](https://github.com/ellmos-ai/gardener) | Minimalist database-driven LLM OS prototype (4 functions, 1 table) |
|
|
326
|
+
| [ellmos-tests](https://github.com/ellmos-ai/ellmos-tests) | Testing framework for LLM operating systems (7 dimensions) |
|
|
327
|
+
|
|
328
|
+
### Desktop Software
|
|
329
|
+
|
|
330
|
+
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.
|
package/package.json
CHANGED
|
@@ -1,65 +1,69 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ellmos-filecommander-mcp",
|
|
3
|
-
"version": "1.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
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"@
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"node": "
|
|
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
|
+
}
|