mcp-file-operations-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-file-operations-server by bsmi021 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 21 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 10 mo ago | this month |
mcp-file-operations-server · Summary
A comprehensive MCP server with streaming support, file operations, change tracking, and HTTP interface for enhanced file management.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-file-operations-server · Use cases
- File management for AI assistants that need to read, write, and organize files
- Automated file processing workflows with progress tracking
- Remote file operations through web interface for collaborative environments
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
mcp-file-operations-server · Install
Installing via Smithery
npx -y @smithery/cli install @bsmi021/mcp-file-operations-server --client claudeManual Installation
npm install
npm startClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"file-operations": {
"command": "npx",
"args": ["@bsmi021/mcp-file-operations-server"]
}
}
}Docker Installation
docker run -it --rm -v "$(pwd):/workspace" ghcr.io/bsmi021/mcp-file-operations-servereverything · 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