file-organizer-mcp 3.2.7 → 3.2.8

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.2.8] - 2026-02-10
4
+
5
+ ### 🚨 CRITICAL FIX: MCP Protocol Compatibility
6
+
7
+ **FINAL FIX - v3.2.8**
8
+ - Removed old local node_modules version conflict
9
+ - npx now correctly resolves to global installation
10
+
3
11
  ## [3.2.7] - 2026-02-10
4
12
 
5
13
  ### 🚨 CRITICAL FIX: MCP Protocol Compatibility
package/MIGRATION.md CHANGED
@@ -362,4 +362,4 @@ If you've followed all steps, you're now running File Organizer MCP v3.0 with en
362
362
  **Questions?** Create an issue on [GitHub](https://github.com/kridaydave/File-Organizer-MCP/issues)
363
363
 
364
364
  **Last Updated:** February 10, 2026 (v3.2.7 hotfix)
365
- **Version:** 3.2.7
365
+ **Version:** 3.2.8
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # <a id="file-organizer-mcp-server"></a>File Organizer MCP Server 🗂️
2
2
 
3
- **Version:** 3.2.7 | **MCP Protocol:** 2024-11-05 | **Node:** ≥18.0.0
3
+ **Version:** 3.2.8 | **MCP Protocol:** 2024-11-05 | **Node:** ≥18.0.0
4
4
 
5
5
  [Why Us](#why-specialized-tools) • [Quick Start](#quick-start) • [Features](#features) • [Tools](#tools-reference) • [Examples](#example-workflows) • [API](API.md) • [Security](#security-configuration) • [Architecture](ARCHITECTURE.md)
6
6
 
7
7
  ---
8
8
 
9
- [![npm version](https://img.shields.io/badge/npm-v3.2.7-blue.svg)](https://www.npmjs.com/package/file-organizer-mcp)
9
+ [![npm version](https://img.shields.io/badge/npm-v3.2.8-blue.svg)](https://www.npmjs.com/package/file-organizer-mcp)
10
10
  [![npm downloads](https://img.shields.io/npm/dm/file-organizer-mcp.svg)](https://www.npmjs.com/package/file-organizer-mcp)
11
11
  [![Security](https://img.shields.io/badge/security-hardened-green.svg)](https://github.com/kridaydave/File-Organizer-MCP)
12
12
  [![Node](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](https://nodejs.org)
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  /**
4
4
  * File Organizer MCP - Entry Point Wrapper
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  /**
4
4
  * File Organizer MCP - Setup Wizard Wrapper
@@ -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.7",
9
+ VERSION: "3.2.8",
10
10
  // Security Settings
11
11
  security: {
12
12
  enablePathValidation: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "file-organizer-mcp",
3
- "version": "3.2.7",
3
+ "version": "3.2.8",
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",