mcp-dev-utils
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., "@mcp-dev-utilsformat this JSON: {"name":"John","age":30}"
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.
mcp-dev-utils
A lightweight Model Context Protocol server that exposes everyday developer utilities as MCP tools and resources.
Built with mcp — the official Python MCP SDK (uses FastMCP for a clean, decorator-based API).

Tools
Tool | Description |
| Pretty-print and validate a JSON string |
| Generate 1–20 random UUID v4 values |
| Encode or decode Base64 strings |
| Look up an HTTP status code name and description |
| Convert a Unix timestamp to UTC or get the current time |
Related MCP server: mcp-server-devutils
Resources
URI | Description |
| Full reference list of supported HTTP status codes |
Running locally
Requirements: Python ≥ 3.11, uv (or pip)
# Install dependencies
uv sync
# Run over stdio (default — used by most MCP hosts)
uv run python server.py
# Or run as an SSE server on port 8000
uv run python -c "from server import mcp; mcp.run(transport='sse')"
# Test interactively in the browser
uv run mcp dev server.pyConnecting to Claude Desktop
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"dev-utils": {
"command": "uv",
"args": ["run", "python", "server.py"],
"cwd": "/absolute/path/to/mcp-dev-utils"
}
}
}On macOS the config lives at:
~/Library/Application Support/Claude/claude_desktop_config.json
On Windows the config lives at:
%APPDATA%\Claude\claude_desktop_config.json
Project structure
mcp-dev-utils/
├── server.py # All tools, resources, and server definition
├── test_client.py # Example MCP client for manual testing
├── test_msg.txt # Raw JSON-RPC messages (educational — use test_client.py for reliable testing)
├── pyproject.toml # Project metadata and dependencies
└── README.mdKey design decisions
Single-file server — keeps the codebase easy to read and audit at a glance; ideal for a portfolio piece where clarity matters.
FastMCP — the high-level SDK wrapper that removes boilerplate while still showing the underlying MCP concepts (tools, resources, structured arguments).
stdio transport — the default and most universally supported transport; no extra infrastructure needed.
No external dependencies — all tools rely only on the Python standard library plus
mcpitself.
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 updated17553MIT
- Flicense-qualityDmaintenanceProvides various developer utilities such as UUID generation, timestamp conversion, Base64 encoding, color conversion, password generation, hash generation, and JSON formatting via MCP.Last updated161
- Alicense-qualityBmaintenanceAn MCP server offering developer utilities including JSON validation, base64 encoding, timestamp conversion, and hashing, built with a clean architecture for easy extensibility.Last updatedMIT
Related MCP Connectors
Remote MCP server: 10 developer utilities (base64, JWT, DNS, UUID, URL, JSON, UA, IP lookup).
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for URL shortening and management
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/jegor377/mcp-dev-utils'
If you have feedback or need assistance with the MCP directory API, please join our Discord server