MCP Catalogs
Home

everything vs LocalFilesOrganizer-MCP

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
LocalFilesOrganizer-MCP
by TobiasArg
Stars★ 85,748★ 1
30d uses
Score7736
Official
Categories
Developer ToolsAI / LLM ToolsOther
File SystemProductivityDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis month3 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

LocalFilesOrganizer-MCP · Summary

MCP server with tools to safely organize, read, write, and analyze local files with built-in protections.

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

LocalFilesOrganizer-MCP · Use cases

  • Organize project files by extension or date for better workspace management
  • Search through codebases for specific patterns or content
  • Clean up duplicate files to save storage space

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

LocalFilesOrganizer-MCP · Install

Installation

Using NPX (Recommended)

Add to your Claude Desktop configuration file:

**macOS**: ~/Library/Application Support/Claude/claude_desktop_config.json **Windows**: %APPDATA%\Claude\claude_desktop_config.json **Linux**: ~/.config/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "local-files": {
      "command": "npx",
      "args": ["-y", "fsorg"]
    }
  }
}

From Source

git clone https://github.com/argtobias/fsorg.git
cd fsorg
pnpm install
pnpm build

Then configure Claude Desktop to use the built server:

Comparison generated from public README + GitHub signals. Last updated automatically.