Craftery Developer Tools
Server Details
Developer utilities: color conversion, WCAG contrast, timestamps, UUIDs, and hashing.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
6 toolscheck_contrastCheck WCAG 2.1 contrast ratioAInspect
Compute the exact WCAG 2.1 contrast ratio between a foreground and background color (relative-luminance formula) and report AA / AAA pass-fail for normal text (4.5 / 7), large text (3 / 4.5), and UI components (3). Use this instead of estimating contrast — the luminance math is precise here.
| Name | Required | Description | Default |
|---|---|---|---|
| background | Yes | Background color. Color in any supported notation: hex (#F43, #FF6347, #FF6347CC), rgb()/rgba(), hsl()/hsla(), a CSS named color (tomato), or a Tailwind token (red-500). | |
| foreground | Yes | Foreground (text) color. Color in any supported notation: hex (#F43, #FF6347, #FF6347CC), rgb()/rgba(), hsl()/hsla(), a CSS named color (tomato), or a Tailwind token (red-500). |
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 of behavioral disclosure. It clearly states that the tool computes the relative-luminance-based contrast ratio and reports pass/fail outcomes with specific thresholds, which is meaningful behavioral context beyond what the schema shows. It does not mention edge cases like invalid colors or alpha handling, but the core behavior is well disclosed.
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 two sentences with no filler. The primary purpose and precision guarantee are front-loaded, and the threshold details follow efficiently. Every phrase earns its place.
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 two-parameter calculator with no output schema, the description adequately explains what is computed, which standards are applied, and what results will be reported. It does not define the exact return format, but the threshold and pass-fail details sufficiently inform an agent about expected output.
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 input schema already provides 100% parameter coverage with detailed descriptions of accepted color notations for both foreground and background. The tool description adds threshold context but no meaningful parameter semantics beyond what the schema already supplies, so the baseline score of 3 is appropriate.
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 states a specific verb and resource: compute the exact WCAG 2.1 contrast ratio between foreground and background colors. It also specifies the output (AA/AAA pass-fail for normal text, large text, and UI components), which clearly distinguishes it from the sibling conversion and utility tools.
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 explicitly says to use this tool when an exact contrast ratio is needed instead of estimating, which gives a clear usage context. It does not explicitly name alternative sibling tools or state when not to use it, so it falls just short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
convert_colorConvert color to 12 platform formatsAInspect
Convert a color into exact, platform-correct code for 12 formats: HEX, HEX8, rgba(), hsla(), closest CSS named color, closest Tailwind class, SwiftUI Color, UIColor, Jetpack Compose, Android XML, Flutter, and React Native. Handles the per-platform alpha byte order (RRGGBBAA on the web vs. AARRGGBB on Android/Compose/Flutter) that is easy to get wrong by hand.
| Name | Required | Description | Default |
|---|---|---|---|
| alpha | No | Opacity 0–1. Overrides any alpha embedded in the color input. Defaults to the input's alpha, or 1. | |
| color | Yes | Color in any supported notation: hex (#F43, #FF6347, #FF6347CC), rgb()/rgba(), hsl()/hsla(), a CSS named color (tomato), or a Tailwind token (red-500). |
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 transparently discloses a key behavioral nuance: the per-platform alpha byte order (RRGGBBAA vs AARRGGBB) and that it handles it automatically. It also notes that 'closest' colors/named values are used where exact matches may not exist. However, it does not specify the return format (e.g., object, array, string) or whether all 12 formats are returned together, which could be expected without an output schema. These gaps keep it from being more transparent.
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 two sentences with zero fluff. The first sentence front-loads the core purpose and lists all 12 formats; the second sentence highlights the critical alpha-order complexity. Every word earns its place, making it easy for an agent to quickly grasp the tool's capability.
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 tool with this complexity (12 formats, platform-specific rules), the description covers the essential aspects: what it converts, the formats, and the tricky alpha ordering. It omits an explicit statement of the return structure, which would be helpful given there is no output schema. However, the enumerated formats strongly imply a structured response, so the omission is not critical. Slight room for improvement, hence a 4.
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 input schema already provides full descriptions for both parameters (color formats and alpha behavior), achieving 100% schema description coverage. The description adds value by explaining WHY alpha matters (the byte-order gotcha) and by implying the tool's broader purpose. This goes slightly beyond the schema's mechanical parameter descriptions, so a 4 is appropriate.
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 states a specific verb ('Convert') and resource ('a color') and enumerates 12 concrete output formats, including platform-specific ones. This clearly distinguishes it from sibling tools like convert_timestamp or hash_text, and even from swiftui_color, which is a single-format tool. The exact list leaves no ambiguity about scope.
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 it: whenever you need color code in any of the 12 listed formats. It provides clear context and even calls out the alpha byte-order pitfall, which signals the tool's purpose of producing platform-correct output. However, it does not explicitly state when NOT to use it or mention alternatives (e.g., for a single format like SwiftUI, one might prefer swiftui_color). This is a minor gap given the clarity of the intended use case.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
convert_timestampConvert Unix timestamp ↔ dateAInspect
Convert between Unix epoch timestamps and human dates with exact math: accepts epoch seconds / milliseconds / microseconds (auto-detected by magnitude), ISO 8601 / RFC 2822 strings, or "now". Returns seconds, millis, micros, ISO 8601 UTC, RFC 7231 UTC, the wall-clock time in a requested IANA timezone, and a relative description.
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | Epoch timestamp (e.g. "1735689600", "1735689600000"), ISO 8601 / RFC 2822 date string, or "now". | |
| timezone | No | IANA timezone for the wall-clock output (e.g. "Asia/Seoul"). Default UTC. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full responsibility for behavioral disclosure. It discloses the auto-detection of magnitude (seconds/millis/micros), acceptance of multiple formats, and the full set of return values including wall-clock in a requested IANA timezone and a relative description. This is comprehensive for a pure conversion operation, with no side effects or state changes to hide.
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, information-dense sentence. It is front-loaded with the essential purpose and then lists the accepted inputs and outputs. While it is compact, it covers all key aspects without redundancy. It could be slightly shorter by removing 'exact math' but the phrase adds clarity about precision.
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 tool with two parameters and no output schema, the description is thorough. It explains input format variety, auto-detection, timezone handling, and enumerates the return values. It does not mention error handling on invalid input, but that is typically minor for conversion tools and the overall behavior is well specified.
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 coverage is 100%, so a baseline of 3 applies. The description adds value beyond the schema by explaining the auto-detection logic ('auto-detected by magnitude') and the accepted formats ('ISO 8601 / RFC 2822 strings, or "now"'), plus the timezone usage for the wall-clock output. This helps an agent understand parameter semantics without opening the schema.
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 opens with a clear verb ('Convert') and resource ('between Unix epoch timestamps and human dates'), and immediately specifies the exact scope of inputs (epoch seconds/millis/micros, ISO/RFC strings, 'now') and outputs (multiple formats, timezone, relative). It is unmistakably distinct from its siblings (check_contrast, convert_color, etc.), which are unrelated to timestamp handling.
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 implicitly defines when to use the tool by enumerating accepted input formats and auto-detection behavior. Since none of the sibling tools are alternatives for timestamp conversion, it is clear there is no competing use case. It does not explicitly state when not to use it, but the context of highly specialized siblings makes the usage unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_uuidGenerate UUIDs (v4 / v7 / NIL)AInspect
Generate cryptographically random UUIDs: v4 (random), v7 (RFC 9562 time-ordered, sortable — batches stay strictly ordered), or NIL. Never invent UUIDs by hand — use this for real randomness. Supports uppercase, hyphen-less, and braced formatting.
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | How many UUIDs to generate (1–100). Default 1. | |
| braces | No | Wrap in braces. Default false. | |
| hyphens | No | Keep hyphens. Default true. | |
| version | No | UUID version. Default v4. | |
| uppercase | No | Uppercase output. Default false. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral disclosure burden. It reveals that generated values are cryptographically random, that v7 batches remain strictly ordered, and that formatting options exist. It does not discuss side effects or auth, but for a generation tool this is largely unnecessary and the disclosed ordering behavior adds useful context beyond the schema.
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?
Two concise sentences front-load the core purpose, then add a practical usage warning and a compact summary of formatting options. Every sentence contributes meaning, and there is no redundant restatement of the tool name or schema.
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 five-parameter, all-optional tool with a fully described schema, the description covers the essential behavioral and formatting aspects. The only notable gap is the lack of explicit mention of the return format when count > 1, but given the simplicity of the tool, this is a minor omission.
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 coverage is 100%, so the baseline is 3. The description adds value by clarifying the meaning of the version parameter (v7 is time-ordered and sortable), and by summarizing the formatting parameters (uppercase, hyphen-less, braced). This goes beyond what the schema already provides.
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 states a specific verb ('Generate') with a precise resource ('cryptographically random UUIDs') and enumerates the supported variants (v4, v7, NIL). It also distinguishes itself from sibling utilities like convert_color and hash_text by clearly scoping it to UUID generation only.
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 instruction 'Never invent UUIDs by hand — use this for real randomness' provides clear guidance on when this tool should be used. It implies this is the authoritative random-UUID source, though it does not explicitly name alternatives or exclusion cases beyond hand-crafting.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hash_textHash text (MD5 / SHA / HMAC)AInspect
Compute real MD5, SHA-1, SHA-256, SHA-384, and SHA-512 digests of a UTF-8 string, or HMAC variants when a key is given (HMAC-MD5 unsupported). Hashes cannot be computed mentally — always use this. Runs statelessly; input is not stored. For secrets you'd rather keep on-device, use the in-browser tool at craftery.dev/hash/ instead.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Text to hash (UTF-8). | |
| hmac_key | No | Optional HMAC key. When set, outputs are HMAC digests. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral disclosure burden. It states that execution is stateless, input is not stored, HMAC behavior is conditional on a key, and HMAC-MD5 is unsupported. It omits the output encoding/format, but the key behavioral traits are disclosed.
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?
Three sentences with the core algorithms and caveats front-loaded. The sentence 'Hashes cannot be computed mentally — always use this' is slightly filler-ish, but the overall description is compact and scannable.
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 description covers algorithms, UTF-8 input, HMAC behavior, statelessness, and a privacy-preserving alternative. However, there is no output schema, and the description does not state the return format (e.g., hex digests, an object keyed by algorithm), which an agent would need to reliably interpret the result.
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 already covers both parameters with 100% coverage, and the description adds real value: it clarifies that providing hmac_key changes outputs to HMAC digests and that HMAC-MD5 is unsupported. This goes beyond the schema's brief 'Optional HMAC key' 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 opens with a specific verb and resource: 'Compute real MD5, SHA-1, SHA-256, SHA-384, and SHA-512 digests of a UTF-8 string,' and extends to HMAC variants. It is clearly distinct from sibling tools like convert_color or generate_uuid without requiring schema inspection.
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?
It explicitly advises 'always use this' for hashing and names the one relevant alternative: the in-browser tool for secrets that should stay on-device. It doesn't discuss when not to use sibling tools, but none of them are hash alternatives, so the guidance is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
swiftui_colorGenerate SwiftUI color codeAInspect
Generate every SwiftUI Color initializer for a color: Color(red:green:blue:), opacity variant, Color(.sRGB), Color(.displayP3), HSB, hex-extension call, #colorLiteral, UIColor/NSColor bridges — plus a reusable extension Color snippet and Asset Catalog Contents.json.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Optional swatch name for the `extension Color` snippet (e.g. "Brand Primary" → `Color.brandPrimary`). | |
| alpha | No | Opacity 0–1. Defaults to the input's alpha, or 1. | |
| color | Yes | Color in any supported notation: hex (#F43, #FF6347, #FF6347CC), rgb()/rgba(), hsl()/hsla(), a CSS named color (tomato), or a Tailwind token (red-500). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It is transparent about the outputs (initializers, extensions, asset catalog entries) and implies a read-only code generation operation with no side effects.
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, dense sentence that front-loads the main action and then enumerates outputs efficiently. No fluff or repetition.
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?
Although there is no output schema, the description lists every expected output (e.g., Color(red:green:blue:), HSB, hex-extension, #colorLiteral, UIColor/NSColor bridges, extension snippet, Contents.json). An agent knows exactly what to expect.
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 coverage is 100%, and each parameter is clearly described with formats and examples (hex, rgb, hsl, named colors, Tailwind tokens). The 'color' parameter description includes concrete tokens like '#FF6347' and 'red-500'.
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 states a specific verb ('Generate') and a concrete resource ('SwiftUI Color initializer'), enumerating multiple output forms. It clearly distinguishes from siblings like convert_color and check_contrast.
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 purpose is obvious from the name and description, but there is no explicit 'when to use vs. alternatives' guidance. The listing of generated outputs strongly implies the use case, yet the rubric rewards explicit statements.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Generate IDs, QR codes, and hashes, encode values, geolocate IPs, plus gated host diagnostics.
7 utility tools in here: exchange rate, UUID, hash, Base64, timestamp, calculator, unit conversion.
Exact hashing, base64/hex/URL encoding, JWT decoding and UUIDs for AI agents. No auth required.
238+ dev tools via MCP: JSON, QR, PDF, DNS, hash, UUID, code review, JWT, SSL, WHOIS, and more
Related MCP Servers
- 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
- AlicenseAqualityCmaintenanceProvides essential utility functions for AI development workflows, including UUID generation, Base64 encoding/decoding, timestamp conversion, and hash computation.7MIT
- AlicenseBqualityDmaintenanceProvides 45 developer utilities (UUID generation, hashing, JWT decoding, etc.) for AI assistants like Claude Desktop, Cursor, and Windsurf. Includes 16 free tools and 29 pro tools with trial usage.4666MIT
- AlicenseNot gradedqualityDmaintenanceProvides comprehensive color conversion, manipulation, analysis, and WCAG accessibility tools supporting multiple formats (hex, rgb, hsl, oklch, oklab) for design systems and web development.312MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct utility with one exception: convert_color and swiftui_color both produce SwiftUI color code, so an agent may need to read carefully to choose the generic format conversion vs. the comprehensive SwiftUI snippet generator. The other four tools share no ambiguity.
Most tools follow a clear verb_noun snake_case pattern (check_contrast, convert_color, convert_timestamp, generate_uuid, hash_text), but swiftui_color deviates by being noun-headed rather than verb-led. This is a minor but notable inconsistency.
Six tools is a well-scoped size for a developer utility server. Each tool earns its place and none are redundant.
The set covers color conversion/contrast, timestamp conversion, UUID generation, and hashing thoroughly, and each tool handles its own variants well. It could add common utilities like base64 or URL encoding for broader developer coverage, but there are no glaring dead ends.