Everything File Search MCP server
Lightning-fast Windows file search for AI agents via voidtools Everything's real-time NTFS index
not scanned yet
20 stars74 downloads/wk
Reviews
Write oneNobody has reviewed Everything File Search yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
Everything File Search tools
No tool declarations could be read from the package source. They show once the server is installed.
What the publisher says
From the Everything File Search repository's README, as published. We do not edit it. Read it on GitHub
⚡ Everything MCP MCP server for voidtools Everything - search millions of Windows files in milliseconds from any AI agent.
Quick start
/plugin marketplace add elis132/everything-mcp
/plugin install everything-mcp@everything-mcpThat's it for Claude Code - the plugin bundles the MCP server and a skill that teaches the query syntax. For every other client, see Installation below.
Why this one
Performance
es.exe (Everything's real-time NTFS index) vs. a naive filesystem walk, same query:
- everything-mcp: 220 ms avg (5 runs)
- Naive walk of C:\: 66,539 ms
- ~300x faster
Reproduce this benchmark
@'
import os, subprocess, time, statistics
ES = os.path.expandvars(r"%LOCALAPPDATA%\Everything\es.exe")
QUERY = "everything.exe"
es_runs = []
for _ in range(5):
t0 = time.perf_counter()
subprocess.run([ES, "-n", "100", QUERY], capture_output=True, text=True)
es_runs.append((time.perf_counter() - t0) * 1000)
t0 = time.perf_counter()
matches = []
for dirpath, _, filenames in os.walk(r"C:\\"):
for name in filenames:
if name.lower() == QUERY:
matches.append(os.path.join(dirpath, name))
walk_ms = (time.perf_counter() - t0) * 1000
es_avg = statistics.mean(es_runs)
print("ES avg ms:", round(es_avg, 2))
print("Walk ms:", round(walk_ms, 2))
print("Speedup x:", round(walk_ms / es_avg, 1))
print("Matches:", len(matches))
'@ | python -Installation
Prerequisites
- Windows with Everything installed and running
- es.exe (Everything's command-line interface) - included with Everything 1.5 alpha, or install separately:
- winget install voidtools.Everything.Cli
- scoop install everything-cli
- choco install es
- or download from github.com/voidtools/es and place it in your PATH
- Python 3.10+ or uv
Run the server
uvx everything-mcp # recommended, no install needed
pip install everything-mcp # or via pipFrom source:
git clone https://github.com/elis132/everything-mcp.git
cd everything-mcp && pip install -e ".[dev]"Add it to your client
Every client below uses the same MCP server definition:
{
"mcpServers": {
"everything": {
"command": "uvx",
"args": ["everything-mcp"]
}
}
}Shortened. The full README is on GitHub.
Nothing above is checked by us. What we check is on the safety report.
Install directly
claude mcp add everything-mcp -- uvx everything-mcp
Everything File Search: common questions
- Is Everything File Search MCP server safe?
- Yes, by our scan: it is graded A (92/100). Read the Everything File Search safety report
- How do I install Everything File Search?
- It runs on your machine. Copy the Claude Code, Claude Desktop or Cursor config from the install section.
- Does Everything File Search need an API key?
- Not as far as the registry entry and our scan can tell: no credentials are declared or required.
- Is Everything File Search maintained?
- The last commit was 3 days ago (2026-09-23). The latest release is v1.0.9.
- What can I use instead of Everything File Search?
- Servers from other publishers that do the same job: Repomix MCP server, Vexor MCP server and Silica Core MCP server. Compare all Everything File Search alternatives.
Alternatives to Everything File Search
Same job from other publishers: the closest match first, then the best rated.
- RepomixPack local or remote codebases into AI-friendly files that LLMs and coding agents can read or searchnot reviewedWidely usedA
- VexorA semantic search engine for files and code.not reviewedEstablishedB
- Silica CoreRetrieval over the folder the session opened: files, search, read, code_pack, write_note.not reviewedEstablishedA
- Neuronto ARD Registry: Agentic Resource Discovery (ARD) IndexNeuronto ARD Registry: one search across every public ARD registry + 200,000+ verified MCP toolsnot reviewedGrowingB
- ellmos FileCommanderFilesystem MCP server: files, processes, sessions, async search, OCR, archives, safe delete.not reviewedGrowingB