Devutils MCP Server

MCP server with 36 local developer utilities: hashing (MD5/SHA/bcrypt), encoding (Base64/hex/URL/HTML), UUID/password generation, JWT decode, JSON

Local serverstdioPython

What is the Devutils MCP server?

MCP server with 36 local developer utilities: hashing (MD5/SHA/bcrypt), encoding (Base64/hex/URL/HTML), UUID/password generation, JWT decode, JSON formatting, timestamp conversion, CIDR/IP tools, and text utilities. That is what the devutils mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

Think of it as busybox for developer tools — small, essential, and always useful.

The tools it exposes

The server publishes 3 tools. What each one is for:

  • Smithery — Also available on Smithery
  • Cursor — The Cursor tool exposed by this server
  • Windsurf — The Windsurf tool exposed by this server

Getting it running

The server ships on npm as devutils-mcp-server, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Devutils's toolset — Smithery, Cursor, Windsurf — is a fair guide to whether it matches your workflow. It is maintained by paladini; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Devutils's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
SmitheryAlso available on [Smithery](https://smithery.ai/server/devutils-mcp-server).
CursorThe Cursor tool exposed by this server.
WindsurfThe Windsurf tool exposed by this server.

How to install the Devutils MCP server

Or with Docker:

```json
{
  "mcpServers": {
    "devutils": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "ghcr.io/paladini/devutils-mcp-server"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Devutils to Smithery.
  • Use Devutils to Cursor.
  • Use Devutils to Windsurf.

Frequently asked questions

It connects Devutils to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Smithery, Cursor, Windsurf) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Devutils directly.