devutils-mcp-server
About
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.
Details
- Author
- paladini
- Categories
- Developer Tools
Jump to
Setup
Install devutils-mcp-server in your MCP client (Claude Desktop, Cursor, Windsurf, and others).
Repository: https://github.com/paladini/devutils-mcp-server
Follow the installation instructions in the repository README, then restart your MCP client.
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.
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.
Think of it asbusyboxfor developer tools— small, essential, and always useful.
Also available as a plugin:devutils-cursor-plugin— one-click install for Cursor and Claude Code.
Every developer needs to hash strings, encode/decode data, generate UUIDs, decode JWTs, format JSON, calculate CIDR ranges, and convert timestampsevery 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.
Prerequisite:Node.js18+ (Node 22 recommended). Verify withnode -v.
Use theAdd to Cursor/VS Codebadges above, or install the plugin:
/plugin marketplace add paladini/devutils-cursor-plugin /plugin install devutils-mcp@devutils-cursor-plugin
Cursor:Settings → Customize, or add from GitHubpaladini/devutils-cursor-plugin.
npm install -g devutils-mcp-server devutils-mcp-server
# Published image (when available) 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 # Or with Compose docker compose build docker compose run --rm -i devutils-mcp
Listed asio.github.paladini/devutils-mcp-server. Search forio.github.paladini/devutils.
Releases are dual-published to npm and GitHub Packages as@paladini/devutils-mcp-server(see.github/workflows/release.yml). Prefer the public npm package for most installs; use GitHub Packages when you already authenticate againstnpm.pkg.github.com.
# After authenticating to npm.pkg.github.com for the @paladini scope: npx -y @paladini/devutils-mcp-server
One-click:use theAdd to Cursorbadge at the top of this README.
Plugin (recommended):InstallDevUtils MCPfromCursor Settings → Customize.
{ "mcpServers": { "devutils": { "command": "npx", "args": ["-y", "devutils-mcp-server"] } } }
Add to~/Library/Application Support/Claude/claude_desktop_config.json(macOS) or%APPDATA%\Claude\claude_desktop_config.json(Windows):
{ "mcpServers": { "devutils": { "command": "npx", "args": ["-y", "devutils-mcp-server"] } } }
{ "mcpServers": { "devutils": { "command": "docker", "args": ["run", "-i", "--rm", "ghcr.io/paladini/devutils-mcp-server"] } } }
/plugin marketplace add paladini/devutils-cursor-plugin /plugin install devutils-mcp@devutils-cursor-plugin
One-click:use the VS Code badge at the top, or add to.vscode/mcp.json/ user settings:
{ "servers": { "devutils": { "type": "stdio", "command": "npx", "args": ["-y", "devutils-mcp-server"] } } }
Add to~/.codeium/windsurf/mcp_config.json:
{ "mcpServers": { "devutils": { "command": "npx", "args": ["-y", "devutils-mcp-server"] } } }
If this server is available in theDocker MCP Catalog:
- OpenDocker Desktop → MCP Toolkit
- Search forDevUtils
- ClickEnable
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·bcryptjs·nanoid·zod
Zero external API dependencies.All tools run locally with no network calls.
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 a non-root user
docker build -t devutils-mcp-server . # Smoke-test with 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
Valid criticism:If you're writing Python scripts and need to hash something,hashlibis 2 lines of code. Why run MCP overhead?
Answer:This server is optimized forAI agentsin 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 modelmaking up a hashor using the wrong encoding.
- Reliable tool semantics— MCP enforces strict tool contracts. For example,jwt_decodealwaysreturns human-readable dates with timezone support.
- Universally accessible— Any MCP-compatible client can use these tools. A Python library only works if your agent is Python-based.
- Multi-tenant safety— MCP provides explicit tool whitelisting with input validation.
When to use DevUtils versus alternatives
- You're using Claude, Cursor, VS Code Copilot, Windsurf, or any MCP-compatible AI assistant
- You want reliable, validated utility operations in AI workflows
- You need 36 tools in one package
- You're writing regular application code (use native libraries)
- You need extreme performance (direct library calls are faster)
- Your AI client does not support MCP
- 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
- 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
This is a web browser that enables your coding agent, such as Claude Code, to visit websites on your behalf and assist you in identifying bugs or creating UI test cases.
Create crafted UI components inspired by the best 21st.dev design engineers.
Bring agent evaluations, observability, and synthetic test set generation directly into your IDE for free with Galileo's new MCP server
An MCP server to help AI assistants to answer questions and generate AccelByte Extend SDK code more effectively .
MCP server for AI Diagram Maker — generate beautiful software engineering diagrams directly inside Cursor, Claude Desktop, Claude Code, or any MCP-compatible AI agent
ALAPI MCP Tools,Call hundreds of API interfaces via MCP
AI-powered SVG animation generator that transforms static files into animated SVG components using the Allyson platform
MCP server that gives AI assistants on-demand access to 1,500+ amCharts docs, ~300 code examples, and 1000+ class API references.
APIMatic MCP Server is used to validate OpenAPI specifications using APIMatic. The server processes OpenAPI files and returns validation summaries by leveraging APIMatic’s API.
One shared context layer for AI agents and humans — live API specs, DB schemas, and versioned contracts across repos so every agent and teammate works from the same source of truth.
Build and deploy full-stack Next.js apps with 98 tools for React, AWS, and MongoDB
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





