Mmcp.market

Everything File Search MCP server

by elis132·io.github.elis132/everything-mcp·v1.0.9

Lightning-fast Windows file search for AI agents via voidtools Everything's real-time NTFS index

A92/100grade A
What users say
No reviews yet
Be the first
Safety scan
A92/100

not scanned yet

Adoption
Growing

20 stars74 downloads/wk

Reviews

Write one

Nobody 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.

Not scanned yet. New registry listings are scanned within a day of import.

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-mcp

That'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

  1. Windows with Everything installed and running
  2. 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
  1. Python 3.10+ or uv

Run the server

uvx everything-mcp          # recommended, no install needed
pip install everything-mcp  # or via pip

From 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
Add to Cursor

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.

All Everything File Search alternatives →
  • Repomix
    Pack local or remote codebases into AI-friendly files that LLMs and coding agents can read or search
    A
  • Vexor
    A semantic search engine for files and code.
    B
  • Silica Core
    Retrieval over the folder the session opened: files, search, read, code_pack, write_note.
    A
  • Neuronto ARD Registry: Agentic Resource Discovery (ARD) Index
    Neuronto ARD Registry: one search across every public ARD registry + 200,000+ verified MCP tools
    B
  • ellmos FileCommander
    Filesystem MCP server: files, processes, sessions, async search, OCR, archives, safe delete.
    B

More from elis132 →