file-organizer-mcp 3.2.2 → 3.2.4

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.
@@ -128,7 +128,7 @@ if (missingDeps.length > 0) {
128
128
 
129
129
  // All checks passed, run the actual server
130
130
  // Use relative path for more reliable module resolution
131
- const serverRelativePath = '../dist/index.js';
131
+ const serverRelativePath = '../dist/src/index.js';
132
132
 
133
133
  import(serverRelativePath).catch(err => {
134
134
  error(`${RED}Failed to start server:${RESET}`, err.message);
@@ -6,7 +6,7 @@ import os from "os";
6
6
  import path from "path";
7
7
  import fs from "fs";
8
8
  export const CONFIG = {
9
- VERSION: "3.2.2",
9
+ VERSION: "3.2.4",
10
10
  // Security Settings
11
11
  security: {
12
12
  enablePathValidation: true,
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * File Organizer MCP Server v3.2.2
3
+ * File Organizer MCP Server v3.2.4
4
4
  *
5
5
  * A powerful, security-hardened Model Context Protocol server for intelligent file organization.
6
6
  * Features 7-layer path validation, file categorization, duplicate detection, and more.
@@ -11,7 +11,7 @@
11
11
  * npx file-organizer-mcp --version - Show version
12
12
  * npx file-organizer-mcp --help - Show help
13
13
  *
14
- * @version 3.2.2
14
+ * @version 3.2.4
15
15
  * @license MIT
16
16
  */
17
17
  export {};
package/dist/src/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * File Organizer MCP Server v3.2.2
3
+ * File Organizer MCP Server v3.2.4
4
4
  *
5
5
  * A powerful, security-hardened Model Context Protocol server for intelligent file organization.
6
6
  * Features 7-layer path validation, file categorization, duplicate detection, and more.
@@ -11,7 +11,7 @@
11
11
  * npx file-organizer-mcp --version - Show version
12
12
  * npx file-organizer-mcp --help - Show help
13
13
  *
14
- * @version 3.2.2
14
+ * @version 3.2.4
15
15
  * @license MIT
16
16
  */
17
17
  // ==================== PRE-FLIGHT CHECKS ====================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "file-organizer-mcp",
3
- "version": "3.2.2",
3
+ "version": "3.2.4",
4
4
  "description": "Intelligent file organization MCP server for Claude with security-hardened operations, auto-categorization, and duplicate detection",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",
@@ -18,7 +18,7 @@
18
18
  "test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
19
19
  "test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
20
20
  "test:security": "node dist/src/tests/test-security.js",
21
- "setup": "node dist/tui/index.js",
21
+ "setup": "node dist/src/tui/index.js",
22
22
  "postinstall": "node scripts/postinstall.cjs",
23
23
  "prepare": "node scripts/prepare.cjs",
24
24
  "prepublishOnly": "npm run clean && npm run build && npm test",