
Devutils
- 1 installs
- 3 repo stars
- Updated March 10, 2026
- ofershap/mcp-server-devutils
Provides 17 developer utilities over MCP including base64, UUID/ULID, hashing, JWT decode, cron explain/validate, timestamps, JSON format, and regex test.
About
This skill offers 17 zero-auth developer utilities such as encoding, hashing, JWT decoding, cron parsing, timestamp conversion, and JSON and regex helpers over MCP. A developer uses it for everyday encode/decode and validation tasks.
- 17 utilities: base64, uuid, hash, jwt, cron, json, regex
- jwt_decode reads header/payload/expiry without verifying signatures
Devutils by the numbers
- 1 all-time installs (skills.sh)
- Ranked #468 of 550 CLI & Terminal skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/ofershap/mcp-server-devutils --skill devutilsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 3 |
| Last updated | March 10, 2026 |
| Repository | ofershap/mcp-server-devutils ↗ |
What it does
Provides 17 developer utilities over MCP including base64, UUID/ULID, hashing, JWT decode, cron explain/validate, timestamps, JSON format, and regex test.
Files
Developer Utilities via MCP
Use this skill for everyday developer utility tasks: encoding, hashing, JWT decoding, cron expressions, timestamps, JSON formatting, and regex testing. Zero auth required.
Available Tools
| Category | Tools |
|---|---|
| Encoding | base64_encode, base64_decode |
| ID Generation | uuid_generate, ulid_generate |
| Hashing | hash (single algo), hash_all (all algos) |
| JWT | jwt_decode (header, payload, expiry check) |
| Cron | cron_explain, cron_validate, cron_next |
| Timestamps | timestamp_to_iso, iso_to_timestamp, timestamp_now |
| JSON | json_format, json_minify, json_validate |
| Regex | regex_test |
Key Patterns
jwt_decodeshows header, payload, and checks if expired — does NOT verify signatureshashdefaults to SHA-256;hash_allruns md5, sha1, sha256, sha384, sha512 at oncecron_nextshows the next N scheduled run times — useful for validating cron schedulesuuid_generatecan create multiple UUIDs in one call (passcountparameter)json_validatereports whether input is valid JSON and its root type (object, array, etc.)