file-organizer-mcp 3.2.1 → 3.2.3

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 CHANGED
@@ -77,6 +77,26 @@ Try these commands in your AI client:
77
77
  - `"Find duplicate files in my Documents"`
78
78
  - `"Show me my largest files"`
79
79
 
80
+ ### Installation Methods
81
+
82
+ You have two options to run File Organizer MCP:
83
+
84
+ | Method | Command | Best For |
85
+ |--------|---------|----------|
86
+ | **npx (no install)** | `npx file-organizer-mcp --setup` | Trying it out, occasional use |
87
+ | **Global install** | `npm install -g file-organizer-mcp` | Regular use, faster startup |
88
+
89
+ **Using npx:**
90
+ - No installation needed - downloads on first run
91
+ - Always gets the latest version
92
+ - Slightly slower on first run
93
+
94
+ **Using npm install -g:**
95
+ - Install once: `npm install -g file-organizer-mcp`
96
+ - Then run anytime: `file-organizer-mcp --setup` or `file-organizer-setup`
97
+ - Faster startup, works offline
98
+ - Update with: `npm update -g file-organizer-mcp`
99
+
80
100
  ### Supported AI Clients
81
101
 
82
102
  The setup wizard auto-detects and configures:
@@ -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.1",
9
+ VERSION: "3.2.3",
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.1
3
+ * File Organizer MCP Server v3.2.3
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.1
14
+ * @version 3.2.3
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.1
3
+ * File Organizer MCP Server v3.2.3
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.1
14
+ * @version 3.2.3
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.1",
3
+ "version": "3.2.3",
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",