Organizer MCP Server
Enables Claude to intelligently organize files by scanning folders, detecting duplicates, suggesting meaningful names, and moving files into logical folders.
README
Organizer MCP Server
An MCP server that gives Claude the ability to intelligently organize your files — reading content, detecting duplicates, suggesting meaningful names, and moving files into logical folders.
🎬 Demo
Tools
| Tool | Description |
|---|---|
scan_folder |
Get file statistics, types, and detect generic filenames |
find_duplicates |
Find identical files by content hash |
create_junk_folder |
Move unwanted files to a quarantine folder |
read_file |
Read file content for AI analysis |
suggest_filename |
Suggest meaningful names from file content |
rename_file |
Apply a new name to a file |
organize_folder |
Move files into AI-created category folders |
Setup
1. Install dependencies
python -m venv .venv
.venv\Scripts\activate # Windows
# source .venv/bin/activate # macOS / Linux
pip install -r requirements.txt
2. Add to Claude Desktop
Edit your Claude Desktop config file:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"organizer": {
"command": "python",
"args": ["C:/absolute/path/to/organizer-mcp-server/main.py"]
}
}
}
Restart Claude Desktop. A hammer icon (🔨) will confirm the tools are loaded.
How It Works
- Scan — Claude uses
scan_folderto understand what's in your folder - Read — Claude reads files with generic names to understand their content
- Plan — Claude decides on category names based on actual file content
- Execute — Claude calls
organize_folderwith a file → category map - Verify — A
REDIRECT.txtlog is created showing every change made
No templates. No hardcoded rules. Folders are created based on what Claude understands about your files.
Example
Before:
Downloads/
Document1.pdf ← Claude reads: "Q4 Sales Report"
File2.xlsx ← Claude reads: "Revenue Analysis"
Untitled.doc ← Claude reads: "Product Requirements"
IMG_001.jpg
IMG_002.jpg
After:
Downloads/
Financial_Reports/
Document1.pdf
File2.xlsx
Product_Documentation/
Untitled.doc
Photos/
IMG_001.jpg
IMG_002.jpg
REDIRECT.txt
Testing with MCP Inspector
npx @modelcontextprotocol/inspector python main.py
Opens a web UI at http://localhost:5173 where you can call every tool manually.
📄 License
This project is licensed under the MIT License.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.