file-organizer-mcp 3.2.3 → 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.
@@ -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.3",
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.3
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.3
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.3
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.3
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.3",
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",