From everything-mcp
Queries voidtools Everything's NTFS index to find files/folders on Windows by name, extension, size, date, or path — faster than dir or Get-ChildItem.
How this skill is triggered — by the user, by Claude, or both
Slash command
/everything-mcp:everything-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The `everything_*` MCP tools query voidtools Everything's real-time NTFS index.
The everything_* MCP tools query voidtools Everything's real-time NTFS index.
A search over millions of files returns in milliseconds, so prefer these tools
over shell commands (dir /s, Get-ChildItem -Recurse, glob) for ANY
filename-based lookup outside the current project directory.
| Task | Tool |
|---|---|
| Find files/folders by name, extension, size, date | everything_search |
| "What changed in the last hour/day/week?" | everything_find_recent |
| All videos / documents / code / archives somewhere | everything_search_by_type |
| Metadata or first N lines of specific files | everything_file_details |
| "How many?" / "How much disk space?" | everything_count_stats |
Use everything_count_stats BEFORE listing when a query might match
thousands of files - check the scope first, then narrow.
Space between terms = AND. Key operators:
report.pdf name contains "report.pdf"
*.py extension wildcard
ext:py;js;ts multiple extensions
path:C:\Projects ext:py restrict to a directory tree
size:>10mb size:1kb..1mb size filters
dm:today dm:last1week modified date
dc:2024 created date
"exact name.txt" phrase with spaces (quote it)
a | b OR
!node_modules exclude
folder: folders only
file: files only
dupe: duplicate names
empty: empty folders
regex:^test_.*\.py$ regex (or pass match_regex=true)
everything_search(query="folder: myproject")everything_search(query="wg0.conf | wireguard ext:conf")everything_find_recent(period="1hour", path="C:\\Users\\<user>\\Downloads")everything_count_stats(query="path:C:\\Projects node_modules folder:", include_size=true)everything_file_details(paths=[...], preview_lines=30)path:"C:\My Documents".content: search only works if the
user enabled content indexing in Everything (rare) - to search inside files,
find candidates by name first, then read them.EVERYTHING_INSTANCE unless they configured a named instance.path: to scope, and
prefer max_results/offset paging over huge listings.npx claudepluginhub elis132/everything-mcpPerforms advanced filesystem operations including file listing with filtering, content search, batch copy with dry-run, and directory tree analysis.
Quickly finds files by name, extension, or pattern using fd with smart defaults, gitignore awareness, and parallel execution.
Provides file and directory operations using Claude Code's native Read, Write, Edit, Grep, Glob, and Bash tools, replacing the Filesystem MCP server. Useful for reading, writing, editing, searching, and navigating files.