
Everything搜索
STDIO集成Everything搜索引擎的文件搜索服务器
集成Everything搜索引擎的文件搜索服务器
An MCP server that provides integration with Everything Search Engine, allowing powerful file search capabilities through the Model Context Protocol.
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/
npm install npm run build
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 }
{ "query": "*.txt", "maxResults": 5 }
{ "query": "test", "scope": "C:\\Users", "caseSensitive": true, "wholeWord": true, "maxResults": 10, "sortBy": "date_modified", "ascending": false }
{ "query": ".*\\.js$", "regex": true, "path": true, "maxResults": 5 }
ISC