npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

everything-mcp

v1.0.6

Published

MCP server for Windows Everything file search integration with Claude

Downloads

66

Readme

Everything-MCP

Overview

Everything-MCP is a project that integrates Everything (Voidtools), an ultra-fast file search engine for Windows, as an MCP (Model Context Protocol) server. This enables natural language file search on local systems through MCP clients like Claude Desktop, OpenAI ChatGPT, and others.

Built with Node.js/TypeScript, it can be easily installed and run via npm without requiring a separate Python installation.


Features

| Feature | Description | |---------|-------------| | everything_search(query) | Ultra-fast file/folder search via Everything CLI (es.exe) | | everything_open(path) | Open searched files/folders with default application (Windows only) | | everything_glob(folder, pattern) | Perform folder-based wildcard search | | quick_index_prompt(topic) | Generate summary prompts from search results |


Prerequisites

  1. Node.js Installation (v18 or higher)

  2. Everything Installation

  3. Everything CLI (es.exe) Installation


Quick Start

Using npx (Recommended - No installation required)

npx everything-mcp

This will download and run the latest version automatically. Register it in your MCP client (see setup instructions below).

Local Development

# 1. Clone the repository
git clone https://github.com/chahero/everything-mcp.git
cd everything-mcp

# 2. Install dependencies
npm install

# 3. Build TypeScript
npm run build

# 4. Run the server
npm start

Or in development mode:

npm run dev

Setting Up with Claude Desktop

Method 1: Using npx (Recommended)

  1. Open Claude Desktop Configuration File

    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add the following configuration:

    {
      "mcpServers": {
        "everything-mcp": {
          "command": "npx",
          "args": ["everything-mcp"]
        }
      }
    }
  3. Restart Claude Desktop

    • Save the configuration file and completely restart Claude Desktop.
  4. Verify Connection

    • Start a new conversation in Claude Desktop. You should see the "everything-mcp" server connected at the bottom left.

Method 2: Using Local Path (If you cloned the repository)

  1. Open Claude Desktop Configuration File

    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add the following configuration:

    {
      "mcpServers": {
        "everything-mcp": {
          "command": "node",
          "args": ["C:\\path\\to\\everything-mcp\\dist\\index.js"]
        }
      }
    }

    Replace C:\\path\\to\\everything-mcp with the actual path to your cloned repository.

  3. Restart Claude Desktop

    • Save the configuration file and completely restart Claude Desktop.
  4. Verify Connection

    • Start a new conversation in Claude Desktop. You should see the "everything-mcp" server connected at the bottom left.

Extension Ideas

  • Enable Everything HTTP Server for REST API integration
  • Combine with Naver API, Gemini API, OpenAI API to build hybrid search MCP
  • Integrate with RAG (Retrieval-Augmented Generation) search pipelines

Project Structure

everything-mcp/
 ├── src/
 │   └── index.ts                # MCP server main code (TypeScript)
 ├── dist/                       # Compiled JavaScript (generated after build)
 ├── package.json                # npm package configuration
 ├── tsconfig.json               # TypeScript configuration
 ├── README.md                   # Project documentation
 └── .gitignore                  # Git ignore rules

Limitations

  • Windows only (limited to Everything supported OS)
  • es.exe must have admin privileges to access admin-indexed paths
  • Full functionality guaranteed only in UTF-8 encoding environment

Development Information


License

MIT License — Free to modify and distribute.