Skip to main content
Community resource — not affiliated with Anthropic. Learn more


Everything MCP

Filesystem · Community

Lightning-fast file search across your entire machine using the Everything database (Windows). Find any file instantly by name, path, size, or modification date.

4.8 rating 8,200+ connects Free · Open source Protocol v1.0
Search Windows Fast Community File Index

Connect command

claude mcp add everything -- npx -y @modelcontextprotocol/server-everything
View on GitHub →

Free · Open source · MIT license

8.2kConnects
4.8Rating

What it does

Everything MCP connects Claude to the Everything search engine — a Windows utility that indexes every file on your machine in real time. Where a traditional filesystem search takes seconds or minutes scanning directories, Everything returns results in milliseconds from its persistent index.

Claude can use this server to instantly locate any file by name, partial match, extension, size range, or date modified. This is particularly useful for large development machines, monorepos, or any environment with tens of thousands of files.

  • Search by filename, wildcard, or regex pattern
  • Filter by extension, file size, or modification date
  • Open files directly from search results
  • Retrieve metadata on any matched file
  • List recently modified files in a directory tree

How to connect

Requires Everything to be running on your Windows machine with its SDK server enabled. Install Everything from voidtools.com, then connect the MCP server:

terminal
claude mcp add everything -- npx -y @modelcontextprotocol/server-everything

Available tools

  • search — search for files by name or pattern across all indexed drives
  • get_file_info — return size, path, dates for a specific file
  • open_file — open a file in the default application
  • get_recent_files — list files modified in the last N hours or days

Example usage

Ask Claude to find all config files modified in the past week, or locate a log file buried deep in a nested structure:

example prompt
# User prompt
Find all .env files on my machine that were modified
in the last 30 days. List their full paths.
tool call sequence
search("*.env", date_modified="last30days")
→ returns 7 results in <20ms
get_file_info("C:/projects/app/.env")
get_file_info("C:/users/dev/Desktop/.env")
→ formats results with path + modified date

Windows only: Everything MCP requires the Everything application installed and running. It is not compatible with macOS or Linux. For cross-platform file search, use the Filesystem MCP instead.