Mmcp.market

Everything File Search MCP server

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

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

full report

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 (5)

write = sends, deletes, buys or posts

Read from the package source without running it. The installed server may list more.

  • everything_count_stats

    Get count and size statistics for files matching a query.

  • everything_file_details

    Get detailed metadata and optional content preview for specific files.

  • everything_find_recent

    Find files modified within a recent time period.

  • everything_search

    Search for files and folders instantly using voidtools Everything.

  • everything_search_by_type

    Search for files by type category.

Public scan report

scanner v0.1.9 · 2026-09-23 · same rubric, same numbers if you re-run it

no findings
  • 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
Overall 92/100. Components that don't apply are left out of the denominator. Any critical finding is an F.RubricAppeal a findingJSON

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

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 Agentic Resource Discovery (ARD) Index
    Neuronto Agentic Resource Discovery ARD Index. Search every ARD registry + 31,411 verified tools.
    B
  • Microsoft 365 Files
    Microsoft 365 OneDrive files via Graph: list, search, get, upload, download, share, read text.
    A

More from elis132