MCP Catalogs
Home

MCP.DevOps vs everything

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

MCP.DevOps
by jihadkhawaja
everything
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score3477
Official
Categories
Developer ToolsOps & InfraCloud Storage
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last commit10 mo agothis month

MCP.DevOps · Summary

Comprehensive MCP DevOps server for cloud deployments, Docker operations, and infrastructure automation across AWS, Azure, and Linux servers.

everything · Summary

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

MCP.DevOps · Use cases

  • Automated application deployment to AWS EC2, Azure, and Linux servers
  • Infrastructure provisioning and management through AI assistants
  • CI/CD pipeline automation with MCP-enabled 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

MCP.DevOps · Install

Installation

Prerequisites

  • .NET 8.0 SDK or later
  • Compatible MCP client (Claude Desktop, VS Code with MCP extension, etc.)
  • Cloud CLI tools (optional but recommended):

- AWS CLI for AWS deployments - Azure CLI for Azure deployments - Docker for container operations

Building from Source

git clone https://github.com/jihadkhawaja/MCP.DevOps.git
cd MCP.DevOps
dotnet build

Running the Server

dotnet run --project MCP.DevOps

Claude Desktop Configuration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "MCP.DevOps": {
      "command": "dotnet",
      "args": ["run", "--project", "path/to/MCP.DevOps.csproj"]
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.