devtool
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@devtooldecode JWT eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxMjM0In0.Z2F1cmF2"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
devtool
A unified developer toolbox — base64, JWT, timestamps, UUID, JSON format, hashing, URL, case conversion, colors, number bases, string ops, and regex — all from your terminal, SDK, API, or as MCP tools.
CLI
npx devtool --helpExamples
# Encode / decode
devtool base64 encode "hello world"
echo "aGVsbG8gd29ybGQ=" | devtool base64 decode
# JWT
devtool jwt decode eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxMjM0In0.Z2F1cmF2
# Timestamps
devtool ts now
devtool ts to-date 1768000000
devtool ts from-date "2026-07-11"
# UUID
devtool uuid v4
devtool uuid validate 550e8400-e29b-41d4-a716-446655440000
# JSON
echo '{"foo":"bar"}' | devtool json format
echo '{"foo":"bar"}' | devtool json minify
devtool json validate '{"valid": true}'
# Hash
echo -n "hello" | devtool hash sha256
devtool hash md5 "hello"
# URL
devtool url encode "hello world"
devtool url parse "https://example.com/path?q=1#hash"
# Case
devtool case camel "hello_world"
devtool case snake "helloWorld"
devtool case kebab "helloWorld"
devtool case pascal "hello-world"
# Color
devtool color hex-to-rgb "#ff6600"
devtool color rgb-to-hex 255 102 0
# Number bases
devtool number to-hex 255
devtool number to-bin 42
devtool number to-oct 64
devtool number from-hex FF
# String ops
devtool str len "hello"
devtool str reverse "hello"
devtool str upper "hello"
devtool str lower "HELLO"
devtool str trim " hello "
echo "hello world" | devtool str count "l"
# Regex
devtool regex test "^hello" "hello world"
devtool regex match "\\w+" "hello world 42"
# List tools
devtool listAll commands support --json for machine-readable output:
devtool uuid v4 --jsonRelated MCP server: mcp-server-devutils
SDK
import { DevToolSDK, base64Encode, uuidV4 } from '@talocode/devtool'
const devtool = new DevToolSDK()
console.log(devtool.base64.encode('hello'))
console.log(devtool.ts.now())API
# Start the API server
npx devtool-api
# Use it
curl -X POST http://localhost:3030/v1/base64/encode \
-H 'Content-Type: application/json' \
-d '{"input":"hello"}'
curl -X POST http://localhost:3030/v1/uuid/v4
curl http://localhost:3030/healthMCP
Add to your MCP client config:
{
"mcpServers": {
"devtool": {
"command": "node",
"args": ["path/to/dist/mcp/server.js"]
}
}
}34 MCP tools available including base64 encode/decode, JWT decode, timestamps, UUID generation, JSON format/minify/validate, hashing, URL encode/decode/parse, case conversion, color conversion, number base conversion, string operations, and regex test/match.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceSwiss-army-knife utility MCP server for AI agents. 18 tools for JSON validation/formatting, base64 encode/decode, hash generation, UUID generation, URL parsing, regex testing, markdown↔HTML conversion, text stats, slug generation, datetime conversion, cron parsing, text diffing, CSV↔JSON conversion, and JWT decoding. Zero API Key requiredLast updated5
- AlicenseAqualityFmaintenanceZero-auth MCP server with everyday developer utilities: base64, UUID, hash, JWT decode, cron, timestamps, JSON, regex.Last updated171003MIT
- AlicenseAqualityBmaintenanceDeveloper-focused MCP server for code analysis and local engineering workflows. Provides tools for JSON repair, encoding fixes, import organization, format conversion, diff inspection, and regex testing.Last updated225423MIT
- Flicense-qualityCmaintenanceA lightweight MCP server providing everyday developer utilities such as JSON formatting, UUID generation, Base64 conversion, HTTP status lookup, and Unix timestamp conversion as tools and resources.Last updated
Related MCP Connectors
Remote MCP server: 10 developer utilities (base64, JWT, DNS, UUID, URL, JSON, UA, IP lookup).
Encoding MCP — Base64 / Base64URL / Base32 / Hex.
A MCP server built for developers enabling Git based project management with project and personal…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/talocode/devtool'
If you have feedback or need assistance with the MCP directory API, please join our Discord server