devutils-mcp-server
An open-source DevUtils MCP Server ā a comprehensive developer utilities toolkit for the Docker MCP Catalog. It provides 36 tools across 8 categories that AI assistants can invoke directly.
š ļø DevUtils MCP Server
36 everyday developer tools for any MCP-compatible AI assistant. Hashing, encoding, UUID generation, JWT decoding, JSON formatting, network tools, text utilities, and more ā all local, no external APIs.
šÆ Why?
Every developer needs to hash strings, encode/decode data, generate UUIDs, decode JWTs, format JSON, calculate CIDR ranges, and convert timestamps every day. DevUtils MCP Server brings all of these tools directly into your AI assistant ā works with Claude, Cursor, VS Code, Windsurf, and any other MCP-compatible client.
Think of it as busybox for developer tools ā small, essential, and always useful.
š¦ Quick Start
Option 1 ā npx (no install)
npx devutils-mcp-server
Option 2 ā Docker
# Pull and run
docker run -i --rm ghcr.io/paladini/devutils-mcp-server
# Or build locally
docker build -t devutils-mcp-server .
docker run -i --rm devutils-mcp-server
Option 3 ā Local install
npm install -g devutils-mcp-server
devutils-mcp-server
āļø Client Setup
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"devutils": {
"command": "npx",
"args": ["devutils-mcp-server"]
}
}
}
Or with Docker:
{
"mcpServers": {
"devutils": {
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/paladini/devutils-mcp-server"]
}
}
}
Cursor
Add to your Cursor MCP settings (~/.cursor/mcp.json):
{
"mcpServers": {
"devutils": {
"command": "npx",
"args": ["devutils-mcp-server"]
}
}
}
VS Code (GitHub Copilot)
Add to your .vscode/mcp.json in the workspace, or to your user settings:
{
"servers": {
"devutils": {
"type": "stdio",
"command": "npx",
"args": ["devutils-mcp-server"]
}
}
}
Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"devutils": {
"command": "npx",
"args": ["devutils-mcp-server"]
}
}
}
Docker MCP Toolkit (Docker Desktop)
If this server is available in the Docker MCP Catalog, you can enable it directly from Docker Desktop:
- Open Docker Desktop ā MCP Toolkit
- Search for DevUtils
- Click Enable
Local Development
npm install
npm run dev
š§ Available Tools (36 total)
š Hash Tools (6)
| Tool | Description |
|---|---|
hash_md5 | Generate MD5 hash |
hash_sha1 | Generate SHA-1 hash |
hash_sha256 | Generate SHA-256 hash |
hash_sha512 | Generate SHA-512 hash |
hash_bcrypt | Generate bcrypt hash (configurable rounds) |
hash_bcrypt_verify | Verify string against bcrypt hash |
š Encoding Tools (8)
| Tool | Description |
|---|---|
base64_encode | Encode string to Base64 |
base64_decode | Decode Base64 to string |
url_encode | URL-encode (percent-encoding) |
url_decode | Decode URL-encoded string |
html_encode | Encode HTML entities |
html_decode | Decode HTML entities |
hex_encode | Encode string to hex |
hex_decode | Decode hex to string |
š² Generator Tools (4)
| Tool | Description |
|---|---|
generate_uuid | Cryptographic UUID v4 (batch support) |
generate_nanoid | Compact URL-friendly ID (configurable length) |
generate_password | Secure password (configurable complexity) |
generate_random_hex | Random hex string (configurable length) |
š JWT Tools (2)
| Tool | Description |
|---|---|
jwt_decode | Decode JWT header & payload (with human-readable dates) |
jwt_validate | Validate JWT structure & expiration |
š Formatter Tools (3)
| Tool | Description |
|---|---|
json_format | Pretty-print or minify JSON |
json_validate | Validate JSON with error location |
json_path_query | Extract values using dot-notation path |
š¢ Converter Tools (5)
| Tool | Description |
|---|---|
timestamp_to_date | Unix timestamp ā human date (timezone support) |
date_to_timestamp | Date string ā Unix timestamp |
number_base_convert | Convert between bases (bin/oct/dec/hex/any) |
color_convert | Convert colors (HEX ā RGB ā HSL) |
byte_convert | Convert byte units (B/KB/MB/GB/TB/PB) |
š Network Tools (2)
| Tool | Description |
|---|---|
cidr_calculate | CIDR ā network, broadcast, mask, host range, host count |
ip_validate | Validate & classify IPv4/IPv6 address |
āļø Text Tools (6)
| Tool | Description |
|---|---|
text_stats | Character/word/line/sentence count, reading time |
lorem_ipsum | Generate placeholder text |
case_convert | Convert between camelCase, snake_case, PascalCase, etc. |
slugify | Convert string to URL-friendly slug |
regex_test | Test regex pattern against input |
text_diff | Line-by-line diff between two texts |
šļø Architecture
src/
āāā index.ts # MCP server entry point (stdio transport)
āāā tools/
āāā hash.ts # Cryptographic hash functions
āāā encoding.ts # Encode/decode utilities
āāā generators.ts # ID and password generators
āāā jwt.ts # JWT decode and validation
āāā formatters.ts # JSON formatting and querying
āāā converters.ts # Data type and unit converters
āāā network.ts # Network calculation utilities
āāā text.ts # Text analysis and manipulation
Tech Stack:
- TypeScript + Node.js 22
@modelcontextprotocol/sdkā Official MCP SDKbcryptjsā Password hashingnanoidā Compact ID generationzodā Input validation
Zero external API dependencies. All tools run locally with no network calls.
š³ Docker
The image uses a multi-stage build for minimal size:
- Build stage: Compiles TypeScript on Node 22 Alpine
- Runtime stage: Runs compiled JS on Node 22 Alpine as non-root user
# Build
docker build -t devutils-mcp-server .
# Test (send an MCP initialize request)
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}' | docker run -i --rm devutils-mcp-server
ā FAQ & Design Philosophy
Why MCP, and not just a library?
Valid criticism: If you're writing Python scripts and need to hash something, hashlib is 2 lines of code. Why run MCP overhead?
Answer: This server is optimized for AI agents in multi-step workflows, not programmers writing code:
-
AI hallucination cost >> MCP overhead
An AI model spending 50ms calling an MCP tool (vs. 1ms library call) is negligible when the alternative is the model making up a hash or using the wrong encoding. A wrong hash ā debugging time ā 1000x worse than overhead. -
Reliable tool semantics
Libraries let the model do anything (import, call, write loops). MCP enforces strict tool contracts. For example,jwt_decodealways returns human-readable dates with timezone support ā no model confusion about Unix epoch interpretation. -
Universally accessible
Any MCP-compatible client (Claude, Cursor, VS Code Copilot, Windsurf, and more) can use these tools. A Python library only works if your agent is Python-based. -
Multi-tenant safety
In production systems, letting AI agents run arbitrary library code is a security risk. MCP provides explicit tool whitelisting with input validation.
When to use DevUtils versus alternatives
Use DevUtils if:
- You're using Claude, Cursor, VS Code Copilot, Windsurf, or any MCP-compatible AI assistant
- You want reliable, validated utility operations in your AI workflows
- You need 36+ tools in one package (vs. learning 8 different tool specs)
- You want educational reference implementations of common algorithms
Don't use DevUtils if:
- You're writing regular Python/Node/Go code (use native libraries like
hashlib,crypto) - You need extreme performance (direct library calls are 1000x faster)
- Your AI client does not support MCP
Design philosophy
- Small & focused: 36 utilities, zero external APIs, ~50MB container
- Security-first: Non-root user, Alpine Linux, minimal attack surface
- AI-friendly: Consistent naming (
<domain>_<operation>), strict schemas, human-readable outputs - Client-agnostic: Works with any MCP-compatible client via stdio transport
- Battle-tested: Each tool references standard implementations (zod validation, bcryptjs hashing, etc.)
š Contributing
- Fork the repository
- Create your feature branch (
git checkout -b feat/amazing-tool) - Commit your changes (
git commit -m 'feat: add amazing tool') - Push to the branch (
git push origin feat/amazing-tool) - Open a Pull Request
š License
MIT Ā© Fernando Paladini
Server Terkait
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
OriginUI MCP Server
Search and install OriginUI components, with details fetched dynamically from the OriginUI JSON registry.
Code Snippet Image
Generate beautiful, shareable images from code snippets with syntax highlighting and multiple themes.
d2-mcp
Create, validate, and render diagrams from D2 (Declarative Diagramming) code into SVG and PNG formats.
Elementor WordPress MCP Server
An MCP server for WordPress and Elementor, enabling AI assistants to manage content and build pages.
MCP Shell
Execute secure shell commands from AI assistants and other MCP clients, with configurable security settings.
VibeCoding System
A conversation-driven development framework for rapid MVP and POC creation.
consult7
Analyze large codebases and document collections using high-context models via OpenRouter, OpenAI, or Google AI -- very useful, e.g., with Claude Code
Script Generator Server
A simple note storage system with tools for adding notes and generating scripts from them.
Replicate Ideogram V3 Balanced
Generate images using the Ideogram V3 Balanced model on Replicate.
MCP RAG Server
A lightweight Python server for Retrieval-Augmented Generation (RAG) using AWS Lambda. It retrieves knowledge from external data sources like arXiv and PubMed.