everything-mcp 1.0.1__py3-none-any.whl → 1.0.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,7 @@ Everything MCP — The definitive MCP server for voidtools Everything.
4
4
  Lightning-fast file search for AI agents.
5
5
  """
6
6
 
7
- __version__ = "1.0.1"
7
+ __version__ = "1.0.2"
8
8
 
9
9
 
10
10
  def main() -> None:
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: everything-mcp
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: The definitive MCP server for voidtools Everything — lightning-fast file search for AI agents
5
5
  Project-URL: Homepage, https://github.com/elis132/everything-mcp
6
6
  Project-URL: Repository, https://github.com/elis132/everything-mcp
7
7
  Project-URL: Issues, https://github.com/elis132/everything-mcp/issues
8
8
  Project-URL: Changelog, https://github.com/elis132/everything-mcp/blob/main/CHANGELOG.md
9
- Author-email: Elis <elis@egf.se>
9
+ Author: elis132
10
10
  License: MIT
11
11
  License-File: LICENSE
12
12
  Keywords: ai-agent,claude,codex,everything,file-search,gemini,mcp,model-context-protocol,voidtools
@@ -34,7 +34,7 @@ Description-Content-Type: text/markdown
34
34
  <div align="center">
35
35
  <h1>⚡ Everything MCP</h1>
36
36
  <p>
37
- <strong>The definitive MCP server for <a href="https://www.voidtools.com/">voidtools Everything</a> ? lightning-fast file search for AI agents.</strong>
37
+ <strong>The definitive MCP server for <a href="https://www.voidtools.com/">voidtools Everything</a> lightning-fast file search for AI agents.</strong>
38
38
  </p>
39
39
  <p>
40
40
  <a href="https://pypi.org/project/everything-mcp/"><img alt="PyPI" src="https://img.shields.io/pypi/v/everything-mcp"></a>
@@ -60,6 +60,48 @@ Description-Content-Type: text/markdown
60
60
  | **Test suite** | ✅ pytest | ❌ | ❌ |
61
61
  | **Zero config** | ✅ Works out of the box | ❌ Need SDK DLL path | ❌ Need es.exe in PATH |
62
62
 
63
+ ## Performance
64
+
65
+ Real benchmark from this machine (Windows, query: `everything.exe`):
66
+
67
+ - `everything-mcp` (Everything index via `es.exe`): **220.22 ms avg** (5 runs)
68
+ - Naive filesystem walk over `C:\`: **66,539.03 ms** (single run)
69
+ - Observed speedup: **~302x faster**
70
+
71
+ Reproduce locally (PowerShell):
72
+
73
+ ```powershell
74
+ @'
75
+ import os
76
+ import subprocess
77
+ import time
78
+ import statistics
79
+
80
+ ES = os.path.expandvars(r"%LOCALAPPDATA%\Everything\es.exe")
81
+ QUERY = "everything.exe"
82
+
83
+ es_runs = []
84
+ for _ in range(5):
85
+ t0 = time.perf_counter()
86
+ subprocess.run([ES, "-n", "100", QUERY], capture_output=True, text=True)
87
+ es_runs.append((time.perf_counter() - t0) * 1000)
88
+
89
+ t0 = time.perf_counter()
90
+ matches = []
91
+ for dirpath, _, filenames in os.walk(r"C:\\"):
92
+ for name in filenames:
93
+ if name.lower() == QUERY:
94
+ matches.append(os.path.join(dirpath, name))
95
+ walk_ms = (time.perf_counter() - t0) * 1000
96
+
97
+ es_avg = statistics.mean(es_runs)
98
+ print("ES avg ms:", round(es_avg, 2))
99
+ print("Walk ms:", round(walk_ms, 2))
100
+ print("Speedup x:", round(walk_ms / es_avg, 1))
101
+ print("Matches:", len(matches))
102
+ '@ | python -
103
+ ```
104
+
63
105
  ## Installation
64
106
 
65
107
  ### Prerequisites
@@ -1,11 +1,11 @@
1
- everything_mcp/__init__.py,sha256=tVwJJ4VmkLaIhgWa8-O416AXyfzm3t1nsHuOAccqZVE,282
1
+ everything_mcp/__init__.py,sha256=TzPl7R_wjHUa4VP8tPndrKEDYBTjTKV2vOr5NK7RN7Y,282
2
2
  everything_mcp/__main__.py,sha256=vmT0CZ9tECJGqYncEBFRkZsCA8PtWDPsAxZGhip6fN8,125
3
3
  everything_mcp/backend.py,sha256=Dr1EYRu1xZG0Mlwp_m4NeLti1ICG-xY87DZAEhK03uQ,16394
4
4
  everything_mcp/config.py,sha256=kb4mnPhqk0vAbrDwwrS1DEaA1LIyiuVhagt1lxFzRhE,8840
5
5
  everything_mcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  everything_mcp/server.py,sha256=Vx2wIj77vfVrAoYhBPVaxTu7CJvbclixguNAn-lsiPk,27850
7
- everything_mcp-1.0.1.dist-info/METADATA,sha256=vOXCr0pqU1iauE03hZB_pTl7tDOlmSF3kbYOOL-lMuc,14344
8
- everything_mcp-1.0.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
9
- everything_mcp-1.0.1.dist-info/entry_points.txt,sha256=uML8cv-F-LLAO48ed5Bb8dvt2vue0zkvOIZLPMxskyo,55
10
- everything_mcp-1.0.1.dist-info/licenses/LICENSE,sha256=c6FS4K8gERQWxn6ykdwXZKCYhUV3_Av3Qx1oguEyzZU,1061
11
- everything_mcp-1.0.1.dist-info/RECORD,,
7
+ everything_mcp-1.0.2.dist-info/METADATA,sha256=2Ud4DqEu2a6HhtbhUw6IipzYjQyMZUZutOE1xgx68ZU,15442
8
+ everything_mcp-1.0.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
9
+ everything_mcp-1.0.2.dist-info/entry_points.txt,sha256=uML8cv-F-LLAO48ed5Bb8dvt2vue0zkvOIZLPMxskyo,55
10
+ everything_mcp-1.0.2.dist-info/licenses/LICENSE,sha256=lOzySWZ47IwlWsg4jIvVdxDpca_vVry3jnR_Ibqes4g,1064
11
+ everything_mcp-1.0.2.dist-info/RECORD,,
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Elis
3
+ Copyright (c) 2026 elis132
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal