ellmos-filecommander-mcp 1.8.1 → 1.8.2
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 +4 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,13 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [
|
|
5
|
+
## [1.8.2] - 2026-06-17
|
|
6
6
|
|
|
7
7
|
### Fixed
|
|
8
8
|
- Correct version mismatch in banner/description display (1.7.10 → 1.8.0) and improve OCR `fc_ocr` error handling for edge cases.
|
|
9
|
+
- Align `package.json`, lockfile, MCP runtime version, source header, and `server.json` metadata after the update-notifier release.
|
|
10
|
+
- Refresh npm dependency locks so production audit findings for `hono` and `js-yaml` are resolved.
|
|
9
11
|
|
|
10
12
|
### Changed
|
|
11
13
|
- Bump `@modelcontextprotocol/sdk` from 1.27.1 to 1.29.0.
|
|
14
|
+
- Add a TTY-guarded `update-notifier` check for interactive CLI starts while keeping MCP stdio output unchanged.
|
|
12
15
|
|
|
13
16
|
### CI
|
|
14
17
|
- Add a dedicated GitHub Actions test workflow for Node.js 20, 22, and 24. The workflow runs `npm ci`, TypeScript build, Vitest, and an npm package dry-run on pushes and pull requests.
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* See LICENSE file for details.
|
|
10
10
|
*
|
|
11
11
|
* @author Lukas (BACH)
|
|
12
|
-
* @version 1.
|
|
12
|
+
* @version 1.8.2
|
|
13
13
|
* @license MIT
|
|
14
14
|
*/
|
|
15
15
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
@@ -38,7 +38,7 @@ const execAsync = promisify(exec);
|
|
|
38
38
|
// ============================================================================
|
|
39
39
|
const server = new McpServer({
|
|
40
40
|
name: "ellmos-filecommander-mcp",
|
|
41
|
-
version: "1.8.
|
|
41
|
+
version: "1.8.2"
|
|
42
42
|
});
|
|
43
43
|
const processSessions = new Map();
|
|
44
44
|
let sessionCounter = 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ellmos-filecommander-mcp",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"mcpName": "io.github.ellmos-ai/ellmos-filecommander-mcp",
|
|
5
5
|
"description": "A comprehensive MCP server providing 44 tools for filesystem operations, process management, interactive sessions, async file search, JSON repair, encoding fix, duplicate detection, OCR, ZIP archives, Markdown export, and cloud-lock-safe file operations",
|
|
6
6
|
"type": "module",
|
package/server.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.ellmos-ai/ellmos-filecommander-mcp",
|
|
4
|
-
"version": "1.8.
|
|
4
|
+
"version": "1.8.2",
|
|
5
5
|
"title": "ellmos FileCommander",
|
|
6
6
|
"description": "Local filesystem MCP with 44 tools for safe delete, sessions, async search, OCR, ZIP, PDF, and cloud-lock-safe file operations.",
|
|
7
7
|
"websiteUrl": "https://github.com/ellmos-ai/ellmos-filecommander-mcp",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
{
|
|
15
15
|
"registryType": "npm",
|
|
16
16
|
"identifier": "ellmos-filecommander-mcp",
|
|
17
|
-
"version": "1.8.
|
|
17
|
+
"version": "1.8.2",
|
|
18
18
|
"transport": { "type": "stdio" },
|
|
19
19
|
"runtimeHint": "npx"
|
|
20
20
|
}
|