Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2025 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Mcp Everything Search

    [](https://smithery.ai/server/mcp-server-everything-search) Python-based implementation.

    253 stars
    Python
    Updated Oct 19, 2025

    Documentation

    Everything Search MCP Server

    smithery badge

    An MCP server that provides fast file searching capabilities across Windows, macOS, and Linux. On Windows, it uses the Everything SDK. On macOS, it uses the built-in mdfind command. On Linux, it uses the locate/plocate command.

    Tools

    search

    Search for files and folders across your system. The search capabilities and syntax support vary by platform:

    • Windows: Full Everything SDK features (see syntax guide below)
    • macOS: Basic filename and content search using Spotlight database
    • Linux: Basic filename search using locate database

    Parameters:

    • query (required): Search query string. See platform-specific notes below.
    • max_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). Available options:
    code
    - 1: Sort by filename (A to Z)
      - 2: Sort by filename (Z to A)
      - 3: Sort by path (A to Z)
      - 4: Sort by path (Z to A)
      - 5: Sort by size (smallest first)
      - 6: Sort by size (largest first)
      - 7: Sort by extension (A to Z)
      - 8: Sort by extension (Z to A)
      - 11: Sort by creation date (oldest first)
      - 12: Sort by creation date (newest first)
      - 13: Sort by modification date (oldest first)
      - 14: Sort by modification date (newest first)

    Examples:

    json
    {
      "query": "*.py",
      "max_results": 50,
      "sort_by": 6
    }
    json
    {
      "query": "ext:py datemodified:today",
      "max_results": 10
    }

    Response includes:

    • File/folder path
    • File size in bytes
    • Last modified date

    Search Syntax Guide

    For detailed information about the search syntax supported on each platform (Windows, macOS, and Linux), please see SEARCH_SYNTAX.md.

    Prerequisites

    Windows

    1. Everything search utility:

    • Download and install from https://www.voidtools.com/
    • Make sure the Everything service is running

    2. Everything SDK:

    • Download from https://www.voidtools.com/support/everything/sdk/
    • Extract the SDK files to a location on your system

    Linux

    1. Install and initialize the locate or plocate command:

    • Ubuntu/Debian: sudo apt-get install plocate or sudo apt-get install mlocate
    • Fedora: sudo dnf install mlocate

    2. After installation, update the database:

    • For plocate: sudo updatedb
    • For mlocate: sudo /etc/cron.daily/mlocate

    macOS

    No additional setup required. The server uses the built-in mdfind command.

    Installation

    Installing via Smithery

    To install Everything Search for Claude Desktop automatically via Smithery:

    bash
    npx -y @smithery/cli install mcp-server-everything-search --client claude

    Using uv (recommended)

    When using [uv](https://docs.astral.sh/uv/) no specific installation is needed. We will

    use [uvx](https://docs.astral.sh/uv/guides/tools/) to directly run _mcp-server-everything-search_.

    Using PIP

    Alternatively you can install mcp-server-everything-search via pip:

    code
    pip install mcp-server-everything-search

    After installation, you can run it as a script using:

    code
    python -m mcp_server_everything_search

    Configuration

    Windows

    The server requires the Everything SDK DLL to be available:

    Environment variable:

    code
    EVERYTHING_SDK_PATH=path\to\Everything-SDK\dll\Everything64.dll

    Linux and macOS

    No additional configuration required.

    Usage with Claude Desktop

    Add one of these configurations to your claude_desktop_config.json based on your platform:

    Windows (using uvx)

    json
    "mcpServers": {
      "everything-search": {
        "command": "uvx",
        "args": ["mcp-server-everything-search"],
        "env": {
          "EVERYTHING_SDK_PATH": "path/to/Everything-SDK/dll/Everything64.dll"
        }
      }
    }

    Windows (using pip installation)

    json
    "mcpServers": {
      "everything-search": {
        "command": "python",
        "args": ["-m", "mcp_server_everything_search"],
        "env": {
          "EVERYTHING_SDK_PATH": "path/to/Everything-SDK/dll/Everything64.dll"
        }
      }
    }

    Linux and macOS

    json
    "mcpServers": {
      "everything-search": {
        "command": "uvx",
        "args": ["mcp-server-everything-search"]
      }
    }

    Or if using pip installation:

    json
    "mcpServers": {
      "everything-search": {
        "command": "python",
        "args": ["-m", "mcp_server_everything_search"]
      }
    }

    Debugging

    You can use the MCP inspector to debug the server. For uvx installations:

    code
    npx @modelcontextprotocol/inspector uvx mcp-server-everything-search

    Or if you've installed the package in a specific directory or are developing on it:

    code
    git clone https://github.com/mamertofabian/mcp-everything-search.git
    cd mcp-everything-search/src/mcp_server_everything_search
    npx @modelcontextprotocol/inspector uv run mcp-server-everything-search

    To view server logs:

    Linux/macOS:

    bash
    tail -f ~/.config/Claude/logs/mcp*.log

    Windows (PowerShell):

    powershell
    Get-Content -Path "$env:APPDATA\Claude\logs\mcp*.log" -Tail 20 -Wait

    Development

    If you are doing local development, there are two ways to test your changes:

    1. Run the MCP inspector to test your changes. See Debugging for run instructions.

    2. Test using the Claude desktop app. Add the following to your claude_desktop_config.json:

    json
    "everything-search": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/mcp-everything-search/src/mcp_server_everything_search",
        "run",
        "mcp-server-everything-search"
      ],
      "env": {
        "EVERYTHING_SDK_PATH": "path/to/Everything-SDK/dll/Everything64.dll"
      }
    }

    License

    This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

    Disclaimer

    This project is not affiliated with, endorsed by, or sponsored by voidtools (the creators of Everything search utility). This is an independent project that utilizes the publicly available Everything SDK.

    Similar MCP

    Based on tags & features

    • MA

      Manim Mcp Server

      Python·
      490
    • VI

      Video Editing Mcp

      Python·
      218
    • DA

      Davinci Resolve Mcp

      Python·
      327
    • PL

      Playwright Plus Python Mcp

      Python·
      154

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • MA

      Manim Mcp Server

      Python·
      490
    • VI

      Video Editing Mcp

      Python·
      218
    • DA

      Davinci Resolve Mcp

      Python·
      327
    • PL

      Playwright Plus Python Mcp

      Python·
      154

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k