File Organizer MCP
File Organizer MCP Server
Version 3.5.0 | MCP protocol 2024-11-05 | Node.js 18+
A Model Context Protocol (MCP) server that organizes files. It gives a Claude-style assistant a single atomic operation to categorize, sort, dedupe, and rename files, instead of making it chain dozens of primitive read, write, and rename calls.
Why
A filesystem MCP server built only on read, write, make, and delete forces an assistant to plan every move and rename as a separate step. Each step costs tokens, and more steps means more chances to get the path wrong.
File Organizer MCP replaces those chains with one call:
Primitive approach | File Organizer MCP |
Many |
|
Dozens of reasoning steps | One reasoning step |
High token use | Minimal token use |
Easy to corrupt on partial failure | Rollback-safe operations |
Related MCP server: MCP Filesystem Agent v3
Quick start
One-command setup
npx file-organizer-mcp --setupThe wizard detects installed AI clients (Claude Desktop, Cursor, Windsurf, Cline, and others), configures them, and walks you through folder selection and preferences.
Requirements
Node.js 18 or newer.
After setup
You can ask the assistant things like:
"Organize my Downloads folder"
"Find duplicate files in my Documents"
"Show me my largest files"
Install methods
Method | Command | Use case |
npx |
| Occasional use or a trial |
Global |
| Regular use, faster startup |
Features
Categorization into 12 or more file types.
Cron-based automatic organization and directory watch mode.
Duplicate detection by SHA-256 content hash.
Metadata extraction: EXIF for photos, ID3 for audio, topic extraction for documents.
Smart organization that picks the right strategy per file type.
Dry-run preview, atomic moves, and rollback.
Path traversal protection, TOCTOU mitigation, and metadata scrubbing.
Windows, macOS, and Linux.
Tools
Core tools
file_organizer_scan_directory- List a directory with detailed file info.directoryis required;include_subdirstoggles recursion.file_organizer_read_file- Read a file with 8-layer path validation.pathis required;encodingis utf-8, base64, or binary.file_organizer_organize_smart- Handle music, photos, and documents in one pass, choosing the best strategy per file.file_organizer_batch_rename- Rename many files by pattern, regex, or numbering.file_organizer_undo_last_operation- Reverse the most recent organization.
Full tool list
file_organizer_analyze_duplicatesfile_organizer_batch_read_filesfile_organizer_categorize_by_typefile_organizer_delete_duplicatesfile_organizer_find_duplicate_filesfile_organizer_find_largest_filesfile_organizer_get_categoriesfile_organizer_inspect_metadatafile_organizer_list_filesfile_organizer_list_watchesfile_organizer_organize_by_contentfile_organizer_organize_filesfile_organizer_organize_musicfile_organizer_organize_photosfile_organizer_preview_organizationfile_organizer_read_filefile_organizer_scan_directoryfile_organizer_set_custom_rulesfile_organizer_smart_suggestfile_organizer_system_organizefile_organizer_undo_last_operationfile_organizer_unwatch_directoryfile_organizer_view_historyfile_organizer_watch_directory
For parameters and return shapes, see API.md.
File categories
Category | Typical extensions |
Executables |
|
Videos |
|
Documents |
|
Images |
|
Audio |
|
Archives |
|
Code |
|
Example workflows
Clean up a Downloads folder
Scan the folder and review the file distribution and space use.
Identify duplicates and stale files.
Preview the moves and conflicts.
Confirm, then organize into category folders.
Result: a sorted folder, duplicates flagged, and reclaimed space.
Organize a project
The assistant scans the project, splits files into Code, Assets, and Docs, keeps the src/ tree intact, and moves loose config files, readmes, and screenshots into their proper folders.
Find and handle duplicates
The assistant hashes files, groups duplicates, scores each copy by location, name quality, and age, and recommends which to keep and which to delete. It reports the wasted space. You decide whether to delete.
Discover large files
Point it at a folder and it lists the largest files by size, flags old backups you can archive, and notes any large duplicates.
Organize music
It reads ID3 tags and rebuilds the folder as Artist / Album / Title.mp3.
Before:
Downloads/
song1.mp3
track02.mp3
music_file.mp3
After:
Music/
Coldplay/
A Rush of Blood to the Head/
Clocks.mp3
The Scientist.mp3
Radiohead/
OK Computer/
Paranoid Android.mp3
Karma Police.mp3Organize photos
It reads the capture date from EXIF and sorts photos into YYYY / MM / DD folders.
Before:
Pictures/
IMG_001.jpg
photo123.png
DSC_4567.raw
After:
Pictures/
2023/
12/
25/
IMG_001.jpg
31/
photo123.png
2024/
01/
15/
DSC_4567.rawSecurity-screen a folder
It extracts metadata and content signatures, then flags sensitive metadata, such as EXIF GPS coordinates in a PDF or personal identifiers in a resume, and suggests redaction or quarantine.
Set up automatic organization
Register a directory with a cron schedule:
{
"directory": "/Users/john/Downloads",
"schedule": "0 9 * * *",
"min_file_age_minutes": 5
}The server organizes the folder on that schedule. Add more watches for other directories.
Security configuration
Access is restricted to a whitelist of user directories by default. System directories stay blocked.
Allowed by default
The server enables these locations if they exist on the machine:
Platform | Allowed directories |
Windows | Desktop, Documents, Downloads, Pictures, Videos, Music, OneDrive, Projects, Workspace |
macOS | Desktop, Documents, Downloads, Movies, Music, Pictures, iCloud Drive, Projects |
Linux | Desktop, Documents, Downloads, Music, Pictures, Videos, |
Always blocked
These paths stay blocked even if you add them to the config:
Windows:
C:\Windows, Program Files, AppData,$Recycle.BinmacOS:
/System,/Library,/Applications,/private,/usrLinux:
/etc,/usr,/var,/root,/sys,/procEverywhere:
node_modules,.git,.vscode,.idea,dist,build
Custom configuration
Edit the user config file:
Windows:
%APPDATA%\file-organizer-mcp\config.jsonmacOS:
$HOME/Library/Application Support/file-organizer-mcp/config.jsonLinux:
$HOME/.config/file-organizer-mcp/config.json
Add paths to customAllowedDirectories:
{
"customAllowedDirectories": [
"C:\\Users\\Name\\My Special Folder",
"D:\\Backups"
]
}You can paste a folder path straight from your file explorer's address bar.
External drives and network mounts
Paths outside your home directory are blocked unless you opt in. To allow an external volume such as /Volumes/My Drive on macOS or /media/user/usb on Linux, set allowExternalVolumes to true:
{
"allowExternalVolumes": true,
"customAllowedDirectories": [
"/Volumes/MyExternalDrive",
"/Volumes/Photography Backup"
]
}Windows drive letters like D:\ work without this flag.
Restart the client after editing the config.
Conflict strategy
{
"conflictStrategy": "rename"
}rename(default) - Append a suffix to the new file, for examplefile (1).txt.skip- Keep the existing file and skip the new one.overwrite- Replace the existing file, after writing a backup.
Legacy auto-organize schedule
For a simple hourly, daily, or weekly schedule:
{
"autoOrganize": {
"enabled": true,
"schedule": "daily"
}
}For anything more granular, use the file_organizer_watch_directory tool.
Defenses
Attack type | Protection |
Unauthorized access | Whitelist plus blacklist enforcement |
Path traversal | 8-layer validation pipeline |
Symlink attacks | Real path resolution |
DoS | Resource limits on file count, depth, and size |
Troubleshooting
The MCP server does not appear
Check the config file path is correct.
Confirm Node.js 18 or newer:
node --version.Fully restart the client.
Check the path in the client config file.
Permission errors
Windows: run the client as Administrator.
macOS/Linux: check folder permissions with
ls -la.Confirm the target directory is writable.
Files are not moving
Make sure
dry_runis not enabled.Close programs that may be locking the files.
Check for sufficient disk space.
Read the operation summary for error messages.
Architecture
The server runs a screen-then-enrich pipeline: an MCP protocol handler passes every request through security screening (path validation, sensitive-file detection, rate limiting), then metadata enrichment (EXIF, ID3, document properties), then the service layer that performs the operation. All file operations go through validated paths and support rollback.
See ARCHITECTURE.md for the full diagram and design notes.
Documentation
API.md - Complete tool reference
ARCHITECTURE.md - Design and architecture
CONTRIBUTING.md - Contribution guidelines
MIGRATION.md - v2 to v3 upgrade guide
CHANGELOG.md - Version history
SECURITY.md - Security model and reporting
Contributing
Read CONTRIBUTING.md, then clone and build:
git clone https://github.com/kridaydave/File-Organizer-MCP.git
cd File-Organizer-MCP
npm install
npm run build
npm testReport bugs and feature requests on GitHub Issues. For a security vulnerability, email technocratix902@gmail.com.
License
MIT. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceComprehensive MCP server for filesystem operations, process management, interactive sessions, and async file search. Includes utilities for JSON repair, encoding fixes, duplicate detection, OCR, ZIP archives, and Markdown export.461314MIT
- AlicenseNot gradedqualityBmaintenanceA production-ready MCP server enabling Claude and other LLMs to perform intelligent file operations with minimal token usage.MIT
- AlicenseNot gradedqualityAmaintenanceLocal-first MCP server for safely searching, reading, summarizing, tagging, deduplicating, and organizing local files with scoped access, read-only defaults, and dry-run plans.14MIT
- AlicenseAqualityCmaintenanceAI-powered MCP server for file renaming, organization, and PDF splitting using natural language prompts and content analysis.417MIT
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kridaydave/File-Organizer-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server