MCP Catalogs
Homeit-tools-mcp screenshot

it-tools-mcp

by wrenchpilot·21·Score 43

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

developer-toolsops-infrasecurity
3
Forks
0
Open issues
this month
Last commit
2d ago
Indexed

Overview

The IT Tools MCP Server is a comprehensive implementation that exposes over 121 tools across 14 categories, providing developers, system administrators, and IT professionals with essential utilities. Built with TypeScript, it offers both Node.js and Docker deployment options with proper configuration for VS Code integration. The server implements the complete MCP 2025-06-18 specification with advanced features including logging, health checking, progress tracking, request cancellation, and sampling capabilities.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Automating system administration tasks through CLI integration with MCP clients
you:Encoding and decoding data for secure communication protocols
you:Generating various types of IDs and cryptographic hashes for security applications
you:What MCP specification version does this server implement?
you:How can I use this server outside of VS Code?

When to choose this

Choose this server when you need broad access to IT utilities within an MCP-compatible environment and want to integrate common developer and sysadmin tasks into automated workflows.

When NOT to choose this

Avoid this if you need highly specialized tools not covered by the 121 available utilities, or if you require authentication/permission features beyond basic logging.

Tools this server exposes

12 tools extracted from the README
  • parse_ansible_inventory

    Parse Ansible inventory file

  • generate_ansible_inventory

    Generate Ansible inventory

  • validate_ansible_playbook

    Validate Ansible playbook YAML

  • convert_hex_to_rgb

    Convert HEX color to RGB

  • convert_rgb_to_hex

    Convert RGB color to HEX

  • convert_html_to_markdown

    Convert HTML to Markdown

  • encode_base64

    Encode text to Base64

  • generate_uuid

    Generate a UUID

  • create_hash

    Create hash from text

  • evaluate_math_expression

    Evaluate mathematical expression

  • convert_case

    Convert text case

  • ping

    Test server connection

Comparable tools

mcp-js-toolsmcp-server-utilit-toolsdeveloper-tools-mcp

Installation

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"
        ]
      }
    }
  }
}

FAQ

What MCP specification version does this server implement?
This server implements the complete MCP 2025-06-18 specification with advanced features including logging, health checking, progress tracking, request cancellation, and sampling capabilities.
How can I use this server outside of VS Code?
You can use the server programmatically with Docker or directly via npx. See the README for examples of using curl to make MCP requests directly to the server container or executable.

Compare it-tools-mcp with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.