New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

mcp-server-devutils

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mcp-server-devutils

Zero-auth MCP server with everyday developer utilities: base64, UUID, hash, JWT decode, cron, timestamps, JSON, regex

latest
Source
npmnpm
Version
1.0.2
Version published
Weekly downloads
15
-42.31%
Maintainers
1
Weekly downloads
 
Created
Source

MCP Server DevUtils — 17 Developer Tools for AI Assistants

npm version npm downloads CI License: MIT

An MCP server that gives your AI assistant 17 developer utilities — base64, UUID, JWT decode, cron, timestamps, JSON, regex. No API keys, no external services, just npx.

You: "Decode this JWT: eyJhbGci..."
AI:  Header: { alg: "RS256" }  Payload: { sub: "1234", exp: 1700000000 }  Expired: yes

Works with Claude Desktop, Cursor, and VS Code Copilot. Zero auth required.

MCP server devutils demo — JWT decode, UUID generation, and cron explanation in Claude Desktop

Tools

ToolWhat it does
base64_encodeEncode a string to Base64
base64_decodeDecode a Base64 string
uuid_generateGenerate one or more UUIDs (v4)
ulid_generateGenerate a ULID
hashHash a string (md5, sha1, sha256, sha384, sha512)
hash_allHash with all algorithms at once
jwt_decodeDecode a JWT token (header, payload, expiry)
cron_explainExplain a cron expression in plain English
cron_validateValidate a cron expression
cron_nextShow next N run times for a cron expression
timestamp_to_isoConvert Unix timestamp to ISO 8601
iso_to_timestampConvert ISO 8601 to Unix timestamp
timestamp_nowGet current time in multiple formats
json_formatPretty-print a JSON string
json_minifyMinify a JSON string
json_validateValidate JSON and report its type
regex_testTest a regex pattern against a string

Quick Start

With Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "devutils": {
      "command": "npx",
      "args": ["-y", "mcp-server-devutils"]
    }
  }
}

With Cursor

Add to your .cursor/mcp.json:

{
  "mcpServers": {
    "devutils": {
      "command": "npx",
      "args": ["-y", "mcp-server-devutils"]
    }
  }
}

With VS Code (Copilot)

Add to your .vscode/mcp.json:

{
  "servers": {
    "devutils": {
      "command": "npx",
      "args": ["-y", "mcp-server-devutils"]
    }
  }
}

Examples

Ask your AI assistant:

  • "Decode this JWT token: eyJhbG..."
  • "What does the cron expression 0 9 * * 1-5 mean?"
  • "Generate 5 UUIDs"
  • "Hash this string with SHA-256: hello world"
  • "Convert Unix timestamp 1700000000 to a date"
  • "Format this JSON: {"a":1,"b":2}"
  • "Test the regex \d{3}-\d{4} against '555-1234'"

Development

npm install
npm test
npm run build

Author

Made by ofershap

LinkedIn GitHub

README built with README Builder

License

MIT © Ofer Shapira

Keywords

mcp

FAQs

Package last updated on 10 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts