MCP Catalogs
Home

everything vs Verzeichnis-Server-MCP

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

everything
by modelcontextprotocol
Verzeichnis-Server-MCP
by stephanj79
Stars★ 85,748★ 2
30d uses
Score7732
Official
Categories
Developer ToolsAI / LLM ToolsOther
File SystemDeveloper ToolsProductivity
LanguageTypeScriptC#
Last committhis month9 mo ago

everything · Summary

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

Verzeichnis-Server-MCP · Summary

A C# MCP server providing secure, controlled file system operations for AI agents.

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

Verzeichnis-Server-MCP · Use cases

  • Automating file management tasks through AI agents in workflow systems
  • Secure file system access for AI applications in restricted environments
  • Integration with N8N for automated document processing workflows

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

Verzeichnis-Server-MCP · Install

Installation

  1. Clone the repository: git clone https://github.com/stephanj79/Verzeichnis-Server-MCP.git
  2. Build the project using Visual Studio or the .NET CLI: dotnet build
  3. Run the server: dotnet run

Claude Desktop Configuration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "filesystem-mcp": {
      "command": "dotnet",
      "args": ["run", "--project", "path/to/Verzeichnis-Server-MCP"],
      "env": {}
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.