file-organizer-mcp 3.2.1 → 3.2.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/README.md +20 -0
- package/dist/src/config.js +1 -1
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.js +2 -2
- package/package.json +1 -1
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:
|
package/dist/src/config.js
CHANGED
package/dist/src/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* File Organizer MCP Server v3.2.
|
|
3
|
+
* File Organizer MCP Server v3.2.2
|
|
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.
|
|
14
|
+
* @version 3.2.2
|
|
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
|
+
* File Organizer MCP Server v3.2.2
|
|
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.
|
|
14
|
+
* @version 3.2.2
|
|
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
|
+
"version": "3.2.2",
|
|
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",
|