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.
- 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 +2 -2
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.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.
|
|
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
|
+
* 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.
|
|
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
|
+
"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",
|