Skip to content
This repository was archived by the owner on May 24, 2026. It is now read-only.

IT Tools MCP Server v5.10.2

Choose a tag to compare

@github-actions github-actions released this 06 Feb 14:52

Changes since v5.10.1

  • fix: update version to 5.10.2 in manifest, package.json, package-lock.json, and server.json (2bf869d)
  • chore(deps): bump @modelcontextprotocol/sdk (fc45b58)

Installation & Setup

Quick Install with VS Code

Install in VS Code Install in VS Code Insiders

Manual Installation

Add to your VS Code settings.json:

Node

{
  "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:v5.10.2"
        ]
      }
    }
  }
}