Everything Search MCP Server
An MCP server that provides integration with Everything Search Engine, allowing powerful file search capabilities through the Model Context Protocol.
Features
- Full text search across files and directories
- Advanced search options:
- Case sensitive search
- Whole word matching
- Regular expressions
- Path search
- Sorting options:
- By name
- By path
- By size
- By date modified
- Result formatting:
- Human-readable file sizes
- Formatted dates
- Full file paths
Prerequisites
- Node.js 16 or higher
- Everything Search Engine with HTTP Server enabled
Everything Search Configuration
- Open Everything Search
- Go to Tools > Options > HTTP Server
- Enable HTTP Server
- Set the HTTP Server port to 8011 (this is the default port used by this MCP server)
- Click OK to save changes
Note: If you need to use a different port, you’ll need to modify the port in src/server.ts where it connects to http://127.0.0.1:8011/
Installation
npm install
npm run build
Usage
The server provides a single tool through MCP:
use_mcp_tool:
- server_name: everything-search
- tool_name: search
- arguments:
{
"query": "search string", // Required: Text to search for
"scope": "C:", // Optional: Search scope (default: C:)
"caseSensitive": false, // Optional: Match case
"wholeWord": false, // Optional: Match whole words only
"regex": false, // Optional: Use regular expressions
"path": false, // Optional: Search in paths
"maxResults": 100, // Optional: Max results (1-1000, default: 100)
"sortBy": "name", // Optional: Sort by name/path/size/date_modified
"ascending": true // Optional: Sort direction
}
Example Searches
- Basic file search:
{
"query": "*.txt",
"maxResults": 5
}
- Advanced search with filters:
{
"query": "test",
"scope": "C:\Users",
"caseSensitive": true,
"wholeWord": true,
"maxResults": 10,
"sortBy": "date_modified",
"ascending": false
}
- Regex search in paths:
{
"query": ".*\.js$",
"regex": true,
"path": true,
"maxResults": 5
}
License
ISC
Everything Search
Project Details
- Alihkhawaher/everything-search-server
- Last Updated: 4/6/2025
Recomended MCP Servers
Model Context Protocol (MCP) server for controlling Sonic Pi through AI assistants
MCP that allows us to load our bruno collection and have AI call it on our behalf
Monorepo providing 1) OpenAPI to MCP Tool generator 2) Exposing all of Twilio's API as MCP Tools
这是一个通过MCP(模块化控制协议)提供QQ音乐搜索功能的测试服务器。该服务器允许您使用关键词搜索音乐曲目,并返回相关歌曲信息。
Filesystem MCP server with SSE capabilities
📰 GeekNews MCP Server
MCP server enabling persistent memory for Claude through a local knowledge graph - fork focused on local development
An MCP proxy server that aggregates and serves multiple MCP resource servers through a single interface
Unified Cognitive Processing Framework - MCP server for Cline and more
A powerful Model Context Protocol (MCP) server providing comprehensive Gmail integration with LLM processing capabilities.
A collection of fun and interesting data sets for games, storytelling, or bots
An MCP server that provides cryptocurrency project data to AI agents





