Everything Search MCP Server
A powerful Model Context Protocol (MCP) server that integrates with Everything Search Engine, providing lightning-fast file search capabilities across your entire system. This server enables natural language file searches and advanced filtering options through MCP-compatible applications like Claude Desktop, VS Code, and other MCP clients.
Table of Contents
Features
🚀 Lightning Fast Search: Leverages Everything Search Engine's instant file indexing
🔍 Natural Language Queries: Search using natural language descriptions like "large video files" or "recent documents"
🎯 Advanced Search Options: Case sensitivity, whole word matching, regex support
📁 Path-Based Search: Search within specific directories or across entire drives
📊 Smart Sorting: Sort by name, path, size, or modification date
🎨 Rich Formatting: Human-readable file sizes and formatted dates
🌐 Global Installation: Install once, use everywhere across all MCP clients
⚡ Real-time Results: Instant search results as you type
🔧 Highly Configurable: Customizable ports, scopes, and search parameters
Quick Start
Prerequisites
Windows OS (Everything Search Engine is Windows-only)
Node.js 16+ - Download here
Everything Search Engine - Download here
Step 1: Install Everything Search Engine
Download and install Everything Search Engine
Open Everything Search
Go to Tools > Options > HTTP Server
✅ Enable HTTP Server
Set port to 8011 (default)
Click OK and restart Everything
Step 2: Install the MCP Server
Option A: Global Installation (Recommended)
Note: If you haven't published to npm yet, users should use Option B (From Source) until the package is available on npm.
Option B: From Source
Step 3: Configure Your MCP Client
For Claude Desktop
Add to your claude_desktop_config.json:
Config File Locations:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application\ Support/Claude/claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
For VS Code
For quick installation, use one of the one-click install buttons below...
For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open User Settings (JSON).
Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.
Note that the
mcpkey is needed when using themcp.jsonfile.
Add to your VS Code settings.json:
Settings File Locations:
Windows:
%APPDATA%\Code\User\settings.jsonmacOS:
~/Library/Application Support/Code/User/settings.jsonLinux:
~/.config/Code/User/settings.json
Note: Ensure you have the MCP extension installed in VS Code for MCP server support.
Step 4: Restart Your MCP Client
Restart Claude Desktop or VS Code to load the new server.
Step 5: Verify Installation
Test that the server is working:
In your MCP client, try a simple search like:
"Search for README files"
"Find all .txt files"
"Show me large video files"
"Find recent Word documents"
Usage
The server provides two powerful tools:
1. search - Advanced File Search
2. natural_search - Natural Language Search
Examples
Basic Searches
Advanced Searches
Natural Language Searches
Parameters Reference
search Tool Parameters
Parameter | Type | Default | Description |
| string | required | Search query string |
| string |
| Search scope/directory |
| boolean |
| Enable case-sensitive matching |
| boolean |
| Match whole words only |
| boolean |
| Enable regular expressions |
| boolean |
| Search in file paths |
| number |
| Maximum results (1-1000) |
| string |
| Sort by: |
| boolean |
| Sort direction |
natural_search Tool Parameters
Parameter | Type | Default | Description |
| string | required | Natural language search description |
| number |
| Maximum results (1-1000) |
Troubleshooting
Common Issues
"Connection refused" error
Ensure Everything Search is running
Verify HTTP Server is enabled (Tools > Options > HTTP Server)
Check port 8011 is not blocked by firewall
"Command not found" error
Ensure the server is installed globally:
npm install -g everything-search-mcp-serverVerify Node.js is in your PATH
No results returned
Allow Everything to complete initial indexing (can take a few minutes for large drives)
Check if Everything can find files through its GUI first
Verify your search scope exists and is accessible
Ensure you have read permissions for the search directory
Performance issues
Reduce
maxResultsfor faster responsesUse more specific search scopes to limit search area
Consider using exact file extensions instead of wildcards
Configuration
Custom Port Configuration
If you need to use a different port:
Change Everything's HTTP port (Tools > Options > HTTP Server)
Set environment variable:
EVERYTHING_PORT=8012Or modify the server source code
Debug Mode
Enable debug logging:
What's New
Version 1.0.0 🎉
Initial Release: Complete MCP server implementation
Natural Language Search: AI-powered search queries
Global Installation: Easy npm-based installation
Multi-Client Support: Works with Claude Desktop, VS Code, and other MCP clients
Advanced Search Options: Regex, case sensitivity, path search
Rich Documentation: Comprehensive setup and usage guide
Development
Building from Source
Running Tests
Contributing
Fork the repository
Create a feature branch:
git checkout -b feature-nameMake your changes
Add tests if applicable
Commit:
git commit -am 'Add feature'Push:
git push origin feature-nameCreate a Pull Request
License
ISC License - see LICENSE file for details.
Support
🐛 Bug Reports: GitHub Issues
💬 Discussions: GitHub Discussions
📧 Email: anant.kamat.in@gmail.com
Related Projects
Everything Search Engine - The powerful file search engine this server integrates with
Model Context Protocol - The protocol this server implements
Claude Desktop - AI assistant with MCP support
Made with ❤️ for the MCP community