The official Everything MCP server leverages the Everything search engine for instant file and folder searching on Windows. It provides blazing-fast filename search across all connected drives with regex support, file type filtering, and path matching. Essential for agents that need to quickly locate files across large file systems.
npx -y @modelcontextprotocol/server-everything
{
"mcpServers": {
"everything": {
"args": [
"-y",
"@modelcontextprotocol/server-everything"
],
"command": "npx"
}
}
}Search files with Everything
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string"
},
"max_results": {
"type": "integer"
}
}
}// Input
{
"query": "*.tsx",
"max_results": 20
}// Output
{
"files": [
{
"path": "C:/projects/app/src/App.tsx",
"size": 2048
}
]
}The official Everything MCP server leverages the Everything search engine for instant file and folder searching on Windows. It provides blazing-fast filename search across all connected drives with regex support, file type filtering, and path matching. Essential for agents that need to quickly locate files across large file systems.
Everything Search provides 1 tools including search_files.
Yes, Everything Search is completely free to use with no usage limits on the free tier.
You can install Everything Search using the following command: npx -y @modelcontextprotocol/server-everything. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
Everything Search is listed under the Productivity category in the AgentForge MCP registry.
Everything Search has a current uptime of 99.99% with an average response time of 5ms.
To connect Everything Search, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Everything Search's tools via the Model Context Protocol.