Model Context Protocol server providing various IT tools and utilities.
4.5K
DEPRECATED: This image is no longer maintained.
This project was a learning exercise for AI-assisted development and the Model Context Protocol (MCP). No further updates will be published. The image remains available for reference but should not be used in production. No bug fixes, security patches, or new versions will be released.
A comprehensive Model Context Protocol (MCP) server that provides access to over 100 IT tools and utilities commonly used by developers, system administrators, and IT professionals. This server exposes a complete set of tools for encoding/decoding, text manipulation, hashing, network utilities, and many other common development and IT tasks.
Add to your VS Code settings.json:
{
"mcp": {
"servers": {
"it-tools": {
"command": "npx",
"args": [
"it-tools-mcp"
],
"env": {}
}
}
}
}
{
"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"
]
}
}
}
See the complete list of tools with detailed parameters on GitHubā


Built with TypeScript, Zod validation, and MCP SDK for robust, type-safe operation.
This project was developed using VS Code, Copilot Chat Agent, Playwright MCP, and the Claude Sonnet 4 Model, showcasing modern AI-assisted software development:
src/
āāā index.ts # Main MCP server with dynamic tool loading
āāā tools/ # Modular tool categories
āāā ansible/ # 5 Ansible automation tools
āāā color/ # 2 Color conversion tools
āāā crypto/ # 9 Cryptographic & security tools
āāā dataFormat/ # 12 Data format conversion tools
āāā development/ # 6 Development utilities
āāā docker/ # 5 Docker & containerization tools
āāā encoding/ # 8 Encoding/decoding tools
āāā forensic/ # 3 Digital forensics tools
āāā idGenerators/ # 4 ID & code generation tools
āāā math/ # 6 Mathematical operation tools
āāā network/ # 23 Network utilities
āāā physics/ # 3 Physics calculation tools
āāā text/ # 19 Text manipulation tools
āāā utility/ # 7 General utility tools
src/tools/index.tsnpm run buildThis project is no longer accepting contributions. The repository is kept for reference only.
MIT License - see LICENSEā for details.
Content type
Image
Digest
sha256:e512bad24ā¦
Size
155.2 MB
Last updated
4 months ago
docker pull wrenchpilot/it-tools-mcp