Fast file search MCP server for macOS using mdfind command
Project description
Huoshui File Search
A Desktop Extension (DXT) that provides fast file search capabilities for macOS using the native mdfind command (Spotlight search).
⚠️ IMPORTANT: This extension only works on macOS systems. Windows and Linux are not supported.
Features
- Fast file search using macOS Spotlight index
- Multiple filtering options:
- Path-based search restrictions
- Case-sensitive/insensitive search
- Regular expression matching
- Sort results by name, size, or date
- Configurable search limits
- Clean JSON-structured responses
- Built with FastMCP framework for optimal performance
Installation
Via PyPI (Recommended)
uvx huoshui-file-search
From Source
git clone https://github.com/huoshui/huoshui-file-search.git
cd huoshui-file-search
uv sync
Usage
As a Desktop Extension (DXT)
- Install the extension via your DXT-compatible application (e.g., Claude Desktop)
- The extension will be automatically configured and ready to use
- Use the
search_filestool with various parameters
Direct Usage
from server.main import search_files, FileSearchParams
# Basic search
params = FileSearchParams(query="report.pdf")
result = await search_files(None, params)
# Search with filters
params = FileSearchParams(
query="*.py",
path="/Users/username/Documents",
case_sensitive=True,
sort_by="size",
limit=50
)
result = await search_files(None, params)
Tool Parameters
query(required): Search query stringpath(optional): Directory to limit search scopecase_sensitive(optional): Enable case-sensitive search (default: false)regex(optional): Use regular expression matching (default: false)sort_by(optional): Sort results by 'name', 'size', or 'date'limit(optional): Maximum number of results (default: 100, max: 1000)
Examples
Basic File Search
{
"query": "document.pdf"
}
Search in Specific Directory
{
"query": "*.txt",
"path": "/Users/username/Documents"
}
Case-Sensitive Search
{
"query": "README",
"case_sensitive": true
}
Regular Expression Search
{
"query": "log.*2024.*\\.txt$",
"regex": true
}
Sorted and Limited Results
{
"query": "*.jpg",
"sort_by": "size",
"limit": 20
}
Configuration
The extension supports user configuration through the DXT manifest:
allowed_directories: List of directories to limit search scopedefault_limit: Default maximum number of search resultsenable_logging: Enable debug logging
Development
Project Structure
huoshui-file-search/
├── manifest.json # DXT manifest file
├── server/ # MCP server implementation
│ ├── __init__.py
│ ├── __main__.py
│ └── main.py
├── pyproject.toml # Python package configuration
├── requirements.txt # Python dependencies
├── LICENSE # MIT License
└── README.md # This file
Testing Locally
-
Install dependencies:
uv sync -
Run the server:
uv run python -m server
Or after publishing to PyPI:
uvx huoshui-file-search -
The server will communicate via stdio according to the MCP protocol
Publishing to PyPI
-
Build the package:
uv build -
Upload to PyPI:
uv publish
System Requirements
- macOS 10.15 or later
- Python 3.8 or later
- uv package manager (install with:
curl -LsSf https://astral.sh/uv/install.sh | sh) - Spotlight indexing enabled
Troubleshooting
"Platform not supported" Error
This extension only works on macOS. Ensure you're running it on a Mac.
"mdfind command not found" Error
Ensure Spotlight is enabled on your Mac. You can check this in System Preferences > Spotlight.
No Search Results
- Spotlight may still be indexing new files
- Check if the file path is included in Spotlight's search scope
- Verify the search query syntax
Search Timeout
Large searches may timeout after 30 seconds. Try:
- Limiting the search path
- Using more specific queries
- Reducing the result limit
License
MIT License - see LICENSE file for details
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch
- Add tests for new functionality
- Submit a pull request
Support
For issues and feature requests, please visit: https://github.com/huoshui/huoshui-file-search/issues
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file huoshui_file_search-1.0.0.tar.gz.
File metadata
- Download URL: huoshui_file_search-1.0.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f1be379fd8eccaed991dd0f3078b8b833ff8a7c6dedbb5ffda8c3876d09cd5a
|
|
| MD5 |
0022a750863d2eabe4e61b754e1af458
|
|
| BLAKE2b-256 |
649985ba52102b0dcb15930b9e4b33b6c0e8a1b0bf9136ca5b11005c45a6e7b7
|
File details
Details for the file huoshui_file_search-1.0.0-py3-none-any.whl.
File metadata
- Download URL: huoshui_file_search-1.0.0-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5365bb3c0d10ca2d1070a1f06efb41e7f2f5a207e7e925b887a514f0d5c33f84
|
|
| MD5 |
ca4eee089b26a094ea8935fe8b83d8f4
|
|
| BLAKE2b-256 |
60bb01895662cf25f741861ac237792cbf5845765160bed8193b5738f8124b1d
|