The Everything Search MCP Server provides fast file searching capabilities across Windows, macOS, and Linux operating systems. It leverages platform-specific search tools: the Everything SDK on Windows, the built-in mdfind command on macOS, and locate/plocate on Linux, making it a versatile solution for cross-platform file search.
sudo apt-get install plocate
or
sudo apt-get install mlocate
sudo dnf install mlocate
sudo updatedb
sudo /etc/cron.daily/mlocate
No additional setup required. The server uses the built-in mdfind
command.
To install automatically via Smithery:
npx -y @smithery/cli install mcp-server-everything-search --client claude
With uv
you can directly run the server using uvx
without specific installation.
Install via pip:
pip install mcp-server-everything-search
Run it as a script:
python -m mcp_server_everything_search
The server requires the Everything SDK DLL:
Set this environment variable:
EVERYTHING_SDK_PATH=path\to\Everything-SDK\dll\Everything64.dll
No additional configuration required.
Add one of these configurations to your claude_desktop_config.json
based on your platform:
"mcpServers": {
"everything-search": {
"command": "uvx",
"args": ["mcp-server-everything-search"],
"env": {
"EVERYTHING_SDK_PATH": "path/to/Everything-SDK/dll/Everything64.dll"
}
}
}
"mcpServers": {
"everything-search": {
"command": "python",
"args": ["-m", "mcp_server_everything_search"],
"env": {
"EVERYTHING_SDK_PATH": "path/to/Everything-SDK/dll/Everything64.dll"
}
}
}
"mcpServers": {
"everything-search": {
"command": "uvx",
"args": ["mcp-server-everything-search"]
}
}
Or if using pip installation:
"mcpServers": {
"everything-search": {
"command": "python",
"args": ["-m", "mcp_server_everything_search"]
}
}
The server provides a powerful file search tool with the following parameters:
query
(required): Search query stringmax_results
(optional): Maximum number of results to return (default: 100, max: 1000)match_path
(optional): Match against full path instead of filename only (default: false)match_case
(optional): Enable case-sensitive search (default: false)match_whole_word
(optional): Match whole words only (default: false)match_regex
(optional): Enable regex search (default: false)sort_by
(optional): Sort order for results (default: 1)Find Python files (sorted by size, largest first):
{
"query": "*.py",
"max_results": 50,
"sort_by": 6
}
Find Python files modified today:
{
"query": "ext:py datemodified:today",
"max_results": 10
}
Linux/macOS:
tail -f ~/.config/Claude/logs/mcp*.log
Windows (PowerShell):
Get-Content -Path "$env:APPDATA\Claude\logs\mcp*.log" -Tail 20 -Wait
For debugging with the MCP inspector:
npx @modelcontextprotocol/inspector uvx mcp-server-everything-search
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.