MCP Catalogs
Home

everything vs it-tools-mcp

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

everything
by modelcontextprotocol
it-tools-mcp
by wrenchpilot
Stars★ 85,748★ 21
30d uses
Score7743
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsOps & InfraSecurity
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

it-tools-mcp · Summary

MCP server providing access to 121+ IT tools including encoding, hashing, networking, and text processing utilities.

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

it-tools-mcp · Use cases

  • Automating system administration tasks through CLI integration with MCP clients
  • Encoding and decoding data for secure communication protocols
  • Generating various types of IDs and cryptographic hashes for security applications

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

it-tools-mcp · Install

Installation

**Using with VS Code:**

  1. Open VS Code
  2. Press Ctrl+Shift+P (or Cmd+Shift+P on Mac)
  3. Type "MCP" and select "MCP: Add Server"
  4. Choose "NPM Package" and enter: it-tools-mcp

**Manual configuration:**

{
  "mcp": {
    "servers": {
      "it-tools": {
        "command": "npx",
        "args": ["it-tools-mcp"],
        "env": {}
      }
    }
  }
}

**Docker:**

{
  "mcp": {
    "servers": {
      "it-tools": {
        "command": "docker",
        "args": [
          "run",
          "-i",
          "--rm",
          "--init",
          "--security-opt", "no-new-privileges:true",
          "--cap-drop", "ALL",
          "--read-only",
          "--user", "1001:1001",
          "--memory=256m",
          "--cpus=0.5",
          "--name", "it-tools-mcp",
          "wrenchpilot/it-tools-mcp:latest"
        ]
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.