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: Dev Toolbox MCP Server
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.
Available Tools
5 toolsbase64_convertA
Encode a UTF-8 string to Base64 or decode a Base64 string back to text.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | encode | |
| text | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It only states the core operation, but fails to disclose important behavioral traits such as error handling for invalid Base64 input, handling of whitespace, or output formatting. This leaves the agent without guidance on edge cases.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that directly states the tool's purpose. Every word earns its place with no filler or repetition. It is concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, but the description omits critical information about how to select the encoding vs decoding mode via the 'mode' parameter. It also lacks details on validation or error behavior. The presence of an output schema reduces the need to explain return values, but the missing mode semantics and edge-case behavior make it minimally adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has two parameters ('mode' with default 'encode' and 'text') but no descriptions, and the tool description does not explain how these parameters map to the operations. The phrase 'Encode a UTF-8 string' implies 'text' is the input, but 'mode' is never mentioned, making its role ambiguous. With 0% schema coverage, description fails to compensate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states both operations: encoding a UTF-8 string to Base64 and decoding Base64 back to text. It uses specific verbs ('Encode', 'decode') and specifies the resource (Base64), making it distinct from sibling tools like generate_uuid or format_json.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The context is clear: use this tool when you need Base64 conversion. It implicitly covers both directions (encode/decode) but does not explicitly mention when to choose one over the other (which depends on the 'mode' parameter). There are no alternative tools named, but for a simple conversion utility this is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
format_jsonA
Format and validate a JSON string. Returns pretty-printed JSON or a clear error message.
| Name | Required | Description | Default |
|---|---|---|---|
| indent | No | ||
| json_string | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the return behavior (pretty-printed JSON or error message) but doesn't mention effects, safety, or edge cases like invalid input handling beyond 'clear error message'. It lacks context on whether the operation is non-destructive, though this is implied for a formatter.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one concise sentence that front-loads the primary action and outcome. Every word earns its place with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple utility, the description covers the tool's core function and return value, but it leaves gaps: no param semantics, no usage guidelines, and no context on validation specifics beyond error messages. With no annotations and sparse schema, it's adequate but not rich.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It identifies the main input (JSON string) and hints at indentation through 'pretty-printed', but doesn't explicitly define the 'indent' parameter or explain its default/range. This adds minimal value over the schema's bare types.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool formats and validates a JSON string, with a specific output of pretty-printed JSON or an error message. This distinguishes it from sibling utility tools like generate_uuid or base64_convert, which serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for formatting/validating JSON strings but provides no explicit when-to-use guidance or alternatives. Sibling tools are distinct enough that confusion is unlikely, but the description doesn't explicitly say when to use this over others.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_uuidA
Generate one or more random UUID v4 values.
| Name | Required | Description | Default |
|---|---|---|---|
| count | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully discloses the behavior: it generates random UUID v4 values, and the count parameter controls how many. As a pure generation function, there are no side effects or safety concerns to disclose.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no wasted words. Every part conveys essential information: action, resource, and quantity semantics.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simple nature and the presence of an output schema, the description is complete. It states the core functionality and the count behavior, with no missing context for an AI agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description's phrase 'one or more' directly maps to the count parameter, providing meaning beyond the bare schema (which has no property description). It clarifies that count determines how many UUIDs are generated, though it doesn't explicitly name the parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Generate' and identifies the resource as 'random UUID v4 values', clearly distinguishing it from sibling formatting/conversion tools. It also mentions 'one or more', which directly relates to the count parameter.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage (generate UUIDs when needed) but provides no explicit when/when-not guidance or alternatives. For such a simple utility, this is acceptable but not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
http_statusA
Look up an HTTP status code to get its name and description.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden of conveying safety and side effects. 'Look up' implies a non-destructive read operation, which is correct, but it does not disclose behavior for invalid or unknown status codes. For a simple lookup, this is adequate but not rich in behavioral detail.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence containing only essential information. Every word contributes to the meaning, and there is no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is minimal with one required parameter, and an output schema exists to define the return shape. The description fully covers the tool's purpose and input semantics, making it complete for an AI agent to select and invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description adds crucial meaning by clarifying that the integer parameter is an HTTP status code. Although it doesn't specify a valid range, the single parameter is self-explanatory and well contextualized by the tool name and description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Look up') plus a specific resource ('HTTP status code') and states the expected result ('name and description'). This clearly differentiates it from the sibling utility tools, which are about formatting, UUIDs, base64, and timestamps.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies when to use the tool: when an HTTP status code needs to be resolved to its name and description. No alternatives are mentioned, but no sibling tool overlaps in functionality, so the usage context is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
unix_timestampA
Convert a Unix timestamp (seconds since epoch) to a human-readable UTC datetime, or get the current time.
| Name | Required | Description | Default |
|---|---|---|---|
| timestamp | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the main behavior: converting to UTC datetime and retrieving current time. However, it omits edge cases (e.g., invalid timestamps, range limits) and uses 'human-readable' without specifying the exact format, which the output schema may clarify but is not disclosed here.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, front-loaded with the primary action, and covers both modes without repetition or unnecessary detail. It is appropriately sized and well structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter utility with an output schema, the description is nearly complete. It covers both input modes and specifies UTC. Minor omissions like error handling and exact output format are mitigated by the presence of an output schema, and sibling tools pose no ambiguity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides no parameter descriptions (0% coverage), but the description adds essential meaning: 'seconds since epoch' defines the timestamp unit, and 'or get the current time' explains the behavior when timestamp is omitted/null. This fully compensates for the schema's lack of detail for the single parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with a specific verb ('convert') and resource ('Unix timestamp'), and also covers the alternate mode of getting current time. It distinguishes well from sibling tools like format_json and generate_uuid, which are unrelated utilities.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool (for timestamp conversion or current time) and is narrowly scoped, making the context clear. It does not explicitly mention alternatives or exclusions, but the sibling tools are sufficiently distinct that no further guidance is needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
v0.1.0- First observed
base64_convert - First observed
format_json - First observed
generate_uuid - First observed
http_status - First observed
unix_timestamp
TDQS
Each tool has a clearly distinct purpose: JSON formatting, UUID generation, Base64 conversion, HTTP status lookup, and timestamp conversion. There is no overlap or ambiguity between them.
All names use snake_case, but the pattern is mixed: format_json and generate_uuid are verb_noun, while base64_convert is noun_verb and http_status/unix_timestamp are noun_noun. This inconsistency reduces predictability, though the names remain readable.
With exactly 5 tools, the count is well within the ideal range for a focused utility server. Each tool earns its place and there is no bloat or feeling of insufficiency.
The set covers a reasonable spread of common developer utilities, but could be more comprehensive with additions like hashing or URL encoding. However, the current tools are self-contained and do not leave obvious dead ends.
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 Connectors
Remote MCP server: 10 developer utilities (base64, JWT, DNS, UUID, URL, JSON, UA, IP lookup).
238+ dev tools via MCP: JSON, QR, PDF, DNS, hash, UUID, code review, JWT, SSL, WHOIS, and more
49 developer tools via MCP: DNS, WHOIS, IP lookup, JWT, hashing, QR, and more.
65+ free in-browser developer tools (JSON, Base64, JWT, hash, regex…) callable over MCP.
Related MCP Servers
- AlicenseAqualityDmaintenanceZero-auth MCP server with everyday developer utilities: base64, UUID, hash, JWT decode, cron, timestamps, JSON, regex.17884MIT
- FlicenseNot gradedqualityDmaintenanceProvides various developer utilities such as UUID generation, timestamp conversion, Base64 encoding, color conversion, password generation, hash generation, and JSON formatting via MCP.281-
- AlicenseNot gradedqualityBmaintenanceAn MCP server offering developer utilities including JSON validation, base64 encoding, timestamp conversion, and hashing, built with a clean architecture for easy extensibility.MIT
- AlicenseNot gradedqualityBmaintenanceA unified developer toolbox MCP server providing utilities for base64, JWT, timestamps, UUID, JSON formatting, hashing, URL handling, case conversion, color conversion, number bases, string operations, and regex.15MIT
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