Everything File Search MCP server
Lightning-fast Windows file search for AI agents via voidtools Everything's real-time NTFS index
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 (5)
write = sends, deletes, buys or postsRead from the package source without running it. The installed server may list more.
everything_count_statsGet count and size statistics for files matching a query.
everything_file_detailsGet detailed metadata and optional content preview for specific files.
everything_find_recentFind files modified within a recent time period.
everything_searchSearch for files and folders instantly using voidtools Everything.
everything_search_by_typeSearch for files by type category.
Public scan report
scanner v0.1.9 · 2026-09-23 · same rubric, same numbers if you re-run it
- Code scan6 source files scanned25/25
- –Live reliabilityno gateway calls yet and no remote to proben/a
- –Tool poisoningtools not inspected (local package is not executed); not countedn/a
- Auth qualitylocal package, no credentials required12/15
- Maintenancelast push 0 days ago15/15
- Maintainer identityregistry namespace matches repository owner; GitHub account older than a year8/10
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 in the last day (2026-09-23). The latest release is v1.0.8.
- 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 Agentic Resource Discovery (ARD) IndexNeuronto Agentic Resource Discovery ARD Index. Search every ARD registry + 31,411 verified tools.not reviewedGrowingB
- Microsoft 365 FilesMicrosoft 365 OneDrive files via Graph: list, search, get, upload, download, share, read text.not reviewedGrowingA