Auto-generated from tool definitions
Version: 3.4.2
Generated: 2026-02-13T16:45:00.000Z
- file_organizer_analyze_duplicates
- file_organizer_batch_read_files ⭐ v3.3.0
- file_organizer_batch_rename
- file_organizer_categorize_by_type
- file_organizer_delete_duplicates
- file_organizer_find_duplicate_files
- file_organizer_find_largest_files
- file_organizer_get_categories
- file_organizer_inspect_metadata
- file_organizer_list_files
- file_organizer_list_watches
- file_organizer_organize_by_content ⭐ v3.3.0
- file_organizer_organize_files
- file_organizer_organize_music ⭐ v3.3.0
- file_organizer_organize_photos ⭐ v3.3.0
- file_organizer_organize_smart ⭐ v3.3.0
- file_organizer_preview_organization
- file_organizer_read_file
- file_organizer_scan_directory
- file_organizer_set_custom_rules
- file_organizer_undo_last_operation
- file_organizer_unwatch_directory
- file_organizer_watch_directory
Description: Finds duplicate files and suggests which to keep/delete based on location, name quality, and age.
| Parameter | Type | Description | Default |
|---|---|---|---|
directory |
string | - | - |
recommendation_strategy |
string | - | 'best_location' |
auto_select_keep |
boolean | - | false |
response_format |
string | - | 'markdown' |
file_organizer_analyze_duplicates({
directory: "value",
recommendation_strategy: "value",
auto_select_keep: true,
response_format: "value",
});Description: Rename multiple files using rules (find/replace, case, add text, numbering).
| Parameter | Type | Description | Default |
|---|---|---|---|
files |
array | List of absolute file paths | - |
items |
string | - | - |
directory |
string | Directory to scan (optional) | - |
rules |
array | List of renaming rules. See specific rule schemas. | - |
items |
object | - | - |
dry_run |
boolean | Simulate renaming | true |
response_format |
string | - | 'markdown' |
file_organizer_batch_rename({
files: [],
items: "value",
directory: "value",
rules: [],
items: value,
dry_run: true,
response_format: "value",
});Description: Categorize files by their type (Executables, Videos, Documents, etc.) and show statistics for each category.
| Parameter | Type | Description | Default |
|---|---|---|---|
directory |
string | Full path to the directory to categorize | - |
include_subdirs |
boolean | Include subdirectories | false |
response_format |
string | - | 'markdown' |
file_organizer_categorize_by_type({
directory: "value",
include_subdirs: true,
response_format: "value",
});Description: Permanently deletes specified duplicate files. DESTRUCTIVE. Verifies hash/size before deletion.
| Parameter | Type | Description | Default |
|---|---|---|---|
files_to_delete |
array | - | - |
items |
string | - | - |
create_backup_manifest |
boolean | - | true |
response_format |
string | - | 'markdown' |
file_organizer_delete_duplicates({
files_to_delete: [],
items: "value",
create_backup_manifest: true,
response_format: "value",
});Description: Find duplicate files in a directory based on their content (SHA-256 hash). Shows potential wasted space.
| Parameter | Type | Description | Default |
|---|---|---|---|
directory |
string | Full path to the directory | - |
limit |
number | Max groups to return | 100 |
offset |
number | Groups to skip | 0 |
response_format |
string | - | 'markdown' |
file_organizer_find_duplicate_files({
directory: "value",
limit: 123,
offset: 123,
response_format: "value",
});Description: Find the largest files in a directory. Useful for identifying space-consuming files and cleanup opportunities.
| Parameter | Type | Description | Default |
|---|---|---|---|
directory |
string | Full path to the directory | - |
include_subdirs |
boolean | Include subdirectories | false |
top_n |
number | Number of files to return | 10 |
response_format |
string | - | 'markdown' |
file_organizer_find_largest_files({
directory: "value",
include_subdirs: true,
top_n: 123,
response_format: "value",
});Description: Returns the list of categories used for file organization
| Parameter | Type | Description | Default |
|---|---|---|---|
response_format |
string | - | 'markdown' |
file_organizer_get_categories({
response_format: "value",
});Description: Inspects a file and returns comprehensive but privacy-safe metadata. For images, extracts EXIF data (date, camera, dimensions). For audio, extracts ID3 tags (artist, album, title). Excludes sensitive data like GPS coordinates.
| Parameter | Type | Description | Default |
|---|---|---|---|
file |
string | Full path to the file to inspect | - |
response_format |
string | - | 'markdown' |
file_organizer_inspect_metadata({
file: "value",
response_format: "value",
});Description: List all files in a directory with basic information. Returns file names and paths. Does not recurse into subdirectories.
| Parameter | Type | Description | Default |
|---|---|---|---|
directory |
string | Full path to the directory | - |
limit |
number | Max items to return | 100 |
offset |
number | Items to skip | 0 |
response_format |
string | - | 'markdown' |
file_organizer_list_files({
directory: "value",
limit: 123,
offset: 123,
response_format: "value",
});Description: List all directories currently being watched with their schedules.
| Parameter | Type | Description | Default |
|---|---|---|---|
response_format |
string | - | 'markdown' |
file_organizer_list_watches({
response_format: "value",
});Description: Automatically organize files into categorized folders. Use dry_run=true to preview changes.
| Parameter | Type | Description | Default |
|---|---|---|---|
directory |
string | Full path to the directory | - |
dry_run |
boolean | Simulate organization | true |
response_format |
string | - | 'markdown' |
conflict_strategy |
string | How to handle file conflicts (rename/skip/overwrite). Uses config default if not specified | - |
file_organizer_organize_files({
directory: "value",
dry_run: true,
response_format: "value",
conflict_strategy: "value",
});Description: Shows what would happen if files were organized, WITHOUT making any changes. Shows moves, conflicts, and skip reasons.
| Parameter | Type | Description | Default |
|---|---|---|---|
directory |
string | Full path to the directory | - |
show_conflicts_only |
boolean | - | false |
response_format |
string | - | 'markdown' |
conflict_strategy |
string | How to handle file conflicts for preview (rename/skip/overwrite). Uses config default if not specified | - |
file_organizer_preview_organization({
directory: "value",
show_conflicts_only: true,
response_format: "value",
conflict_strategy: "value",
});Description: Read file contents with security checks. Supports text, binary, and base64 encoding.
| Parameter | Type | Description | Default |
|---|---|---|---|
path |
string | Absolute path to the file to read (e.g., /home/user/documents/report.txt) | - |
encoding |
string | Text encoding for the file content | "utf-8" |
maxBytes |
number | Maximum bytes to read (default: 10MB, max: 100MB) | 10MB |
offset |
number | Byte offset to start reading from | 0 |
limit |
number | Maximum bytes to read (alternative to maxBytes) | - |
response_format |
string | Format of the response | "markdown" |
calculateChecksum |
boolean | Include SHA-256 checksum in response | true |
file_organizer_read_file({
path: "value",
encoding: "value",
maxBytes: 123,
offset: 123,
limit: 123,
response_format: "value",
calculateChecksum: true,
});Description: Scan directory and get detailed file information including size, dates, and extensions. Supports recursive scanning.
| Parameter | Type | Description | Default |
|---|---|---|---|
directory |
string | Full path to the directory to scan | - |
include_subdirs |
boolean | Include subdirectories in the scan | false |
max_depth |
number | Maximum depth to scan | -1 |
limit |
number | Max items to return | 100 |
offset |
number | Items to skip | 0 |
response_format |
string | - | 'markdown' |
file_organizer_scan_directory({
directory: "value",
include_subdirs: true,
max_depth: 123,
limit: 123,
offset: 123,
response_format: "value",
});Description: Customize how files are categorized. Rules persist for the current session.
| Parameter | Type | Description | Default |
|---|---|---|---|
rules |
array | - | - |
items |
object | - | - |
properties |
string | - | - |
category |
string | - | - |
extensions |
array | - | - |
items |
string | - | - |
filename_pattern |
string | - | - |
priority |
number | - | - |
file_organizer_set_custom_rules({
rules: [],
items: value,
properties: "value",
category: "value",
extensions: [],
items: "value",
filename_pattern: "value",
priority: 123,
});Description: Reverses file moves and renames from a previous organization task.
| Parameter | Type | Description | Default |
|---|---|---|---|
manifest_id |
string | - | - |
response_format |
string | - | 'markdown' |
file_organizer_undo_last_operation({
manifest_id: "value",
response_format: "value",
});Description: Remove a directory from the watch list.
| Parameter | Type | Description | Default |
|---|---|---|---|
directory |
string | Full path to the directory | - |
response_format |
string | - | 'markdown' |
file_organizer_unwatch_directory({
directory: "value",
response_format: "value",
});Description: Add a directory to the watch list with a cron-based schedule for automatic organization.
| Parameter | Type | Description | Default |
|---|---|---|---|
directory |
string | Full path to the directory to watch (e.g., | - |
schedule |
string | Cron expression. Convert natural language to cron: | - |
auto_organize |
boolean | Enable auto-organization | true |
response_format |
string | - | 'markdown' |
min_file_age_minutes |
number | Minimum file age in minutes before organizing | - |
max_files_per_run |
number | Maximum files to process per run | - |
file_organizer_watch_directory({
directory: "value",
schedule: "value",
auto_organize: true,
response_format: "value",
min_file_age_minutes: 123,
max_files_per_run: 123,
});Description: Automatically organizes mixed folders by detecting file types and applying the appropriate strategy. Routes music files to Music/Artist/Album, photos to Photos/YYYY/MM, and documents to Documents/Topic.
| Parameter | Type | Description | Default |
|---|---|---|---|
source_dir |
string | Full path to directory with mixed files | - |
target_dir |
string | Full path where organized folders will be created | - |
music_structure |
string | Folder structure for music: 'artist/album', 'album', 'genre/artist', 'flat' | 'artist/album' |
photo_date_format |
string | Date format for photos: 'YYYY/MM/DD', 'YYYY-MM-DD', 'YYYY/MM', 'YYYY' | 'YYYY/MM' |
photo_group_by_camera |
boolean | Group photos by camera model within date folders | false |
strip_gps |
boolean | Strip GPS location data from photos for privacy | false |
create_shortcuts |
boolean | Create shortcuts for multi-topic documents | false |
dry_run |
boolean | Preview changes without moving files | true |
copy_instead_of_move |
boolean | Copy files instead of moving them | false |
recursive |
boolean | Scan subdirectories recursively | true |
response_format |
string | Output format | 'markdown' |
file_organizer_organize_smart({
source_dir: "/Users/Downloads",
target_dir: "/Users/Organized",
music_structure: "artist/album",
photo_date_format: "YYYY/MM",
strip_gps: true,
dry_run: true,
});Description: Organize music files into structured folders based on metadata (Artist/Album/Title). Supports MP3, FLAC, OGG, WAV, M4A, AAC formats.
| Parameter | Type | Description | Default |
|---|---|---|---|
source_dir |
string | Full path to directory containing music files | - |
target_dir |
string | Full path where organized music will be placed | - |
structure |
string | Folder structure: 'artist/album', 'album', 'genre/artist', 'flat' | 'artist/album' |
filename_pattern |
string | Rename pattern: '{track} - {title}', '{artist} - {title}', '{title}' | '{track} - {title}' |
dry_run |
boolean | Preview changes without moving files | true |
copy_instead_of_move |
boolean | Copy files instead of moving them | false |
skip_if_missing_metadata |
boolean | Skip files missing artist/album metadata | false |
response_format |
string | Output format | 'markdown' |
file_organizer_organize_music({
source_dir: "/Users/Music/Downloads",
target_dir: "/Users/Music/Organized",
structure: "artist/album",
dry_run: true,
});Description: Organize photos into date-based folders using EXIF metadata. Supports JPEG, PNG, TIFF, HEIC, and RAW formats. Can strip GPS data for privacy.
| Parameter | Type | Description | Default |
|---|---|---|---|
source_dir |
string | Full path to directory containing photos | - |
target_dir |
string | Full path where organized photos will be placed | - |
date_format |
string | Date folder structure: 'YYYY/MM/DD', 'YYYY-MM-DD', 'YYYY/MM', 'YYYY' | 'YYYY/MM' |
group_by_camera |
boolean | Group photos by camera model within date folders | false |
strip_gps |
boolean | Strip GPS location data from photos | false |
unknown_date_folder |
string | Folder name for photos without date metadata | 'Unknown Date' |
dry_run |
boolean | Preview changes without moving files | true |
copy_instead_of_move |
boolean | Copy files instead of moving them | false |
response_format |
string | Output format | 'markdown' |
file_organizer_organize_photos({
source_dir: "/Users/Photos/Import",
target_dir: "/Users/Photos/Organized",
date_format: "YYYY/MM",
strip_gps: true,
dry_run: true,
});Description: Organize documents by extracting topics from content. Supports PDF, DOCX, DOC, TXT, MD, RTF, ODT formats.
| Parameter | Type | Description | Default |
|---|---|---|---|
source_dir |
string | Full path to directory containing documents | - |
target_dir |
string | Full path where organized documents will be placed | - |
create_shortcuts |
boolean | Create shortcuts for multi-topic documents | false |
dry_run |
boolean | Preview changes without moving files | true |
recursive |
boolean | Scan subdirectories recursively | true |
response_format |
string | Output format | 'markdown' |
file_organizer_organize_by_content({
source_dir: "/Users/Documents/Unsorted",
target_dir: "/Users/Documents/Organized",
create_shortcuts: true,
dry_run: true,
});Description: Read multiple files efficiently in a single operation. Supports text, base64, and binary encoding.
| Parameter | Type | Description | Default |
|---|---|---|---|
files |
array | List of absolute file paths to read | - |
encoding |
string | Text encoding: 'utf-8', 'base64', 'binary' | 'utf-8' |
max_bytes_per_file |
number | Maximum bytes to read per file | 10485760 |
response_format |
string | Output format | 'markdown' |
file_organizer_batch_read_files({
files: ["/path/to/file1.txt", "/path/to/file2.txt", "/path/to/file3.txt"],
encoding: "utf-8",
});