
it-tools-mcp
by wrenchpilot·★ 21·Score 43
MCP server providing access to 121+ IT tools including encoding, hashing, networking, and text processing utilities.
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:
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 READMEparse_ansible_inventoryParse Ansible inventory file
generate_ansible_inventoryGenerate Ansible inventory
validate_ansible_playbookValidate Ansible playbook YAML
convert_hex_to_rgbConvert HEX color to RGB
convert_rgb_to_hexConvert RGB color to HEX
convert_html_to_markdownConvert HTML to Markdown
encode_base64Encode text to Base64
generate_uuidGenerate a UUID
create_hashCreate hash from text
evaluate_math_expressionEvaluate mathematical expression
convert_caseConvert text case
pingTest server connection
Comparable tools
Installation
Installation
**Using with VS Code:**
- Open VS Code
- Press
Ctrl+Shift+P(orCmd+Shift+Pon Mac) - Type "MCP" and select "MCP: Add Server"
- 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
Last updated · Auto-generated from public README + GitHub signals.