Local File Organizer is a Python-based MCP server that helps users manage and organize their files by automatically categorizing them based on file extensions. It provides tools for analyzing directory contents, creating category folders, moving files in bulk, and identifying project directories to preserve their structure. The implementation includes features like recursive directory scanning, metadata retrieval, and project detection based on common indicators like .git folders or package.json files. Particularly useful for cleaning up messy downloads folders, organizing media collections, or preparing directories for backup while respecting important project structures.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
List all available categories for file organization.
Analyze a directory without making changes. Parameters: path (string) - the path to the directory to analyze.
Create category folders in a target directory. Parameters: path (string) - the path to the target directory.
Organize files by type in a specified directory. Parameters: path (string) - the path to the directory containing files to organize.
Search for files in a specified directory matching a given pattern. Parameters: path (string) - the path to the directory, pattern (string) - the search pattern.