MCP Everything Search is a Model Context Protocol server that enables Claude to search files on your local system using platform-specific search utilities. It supports macOS (mdfind), Linux (find/grep), and Windows (Everything search), providing a unified interface for powerful file discovery across different operating systems. This tool allows Claude to quickly locate files based on content, metadata, and file attributes without requiring direct file system access.
MCP Everything Search is a powerful cross-platform file search tool that allows Claude to search your local files using native search utilities on each operating system:
mdfind
(Spotlight search)find
and grep
commandspip install mcp-server-everything-search
smithery install mcp-everything-search
git clone https://github.com/mamertofabian/mcp-everything-search.git
cd mcp-everything-search
pip install -e .
Start the MCP server with:
python -m mcp_server_everything_search.server
The server will run on port 8000 by default.
The search functionality varies by platform:
macOS search uses Spotlight's powerful metadata indexing system. You can search by:
Example queries:
"text in file"
- Search for specific textkMDItemFSName="*.pdf"
- Search for PDF fileskMDItemContentCreationDate >= $time.today(-7)
- Files created in the last weekLinux search combines find
for file attributes and grep
for content searching:
Example queries:
{"query": "search term", "path": "/home/user/documents"}
{"name": "*.txt", "content": "search term", "path": "/home/user"}
Windows search uses the Everything search engine for fast file indexing:
Example queries:
document
*.pdf
content:important ext:docx modified:today
The MCP server provides the following tools for Claude:
search_files: Search for files on the local system
query
: The search query stringpath
(optional): Limit search to a specific directorymax_results
(optional): Limit the number of results returnedget_search_syntax: Get information about the search syntax for the current platform
You can customize the server behavior by modifying environment variables:
PORT
: Change the server port (default: 8000)LOG_LEVEL
: Set logging verbosity (default: WARNING)MAX_RESULTS
: Set default maximum results limitFor more detailed information and examples, visit the GitHub repository.