OmniKit
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| base64_encodeA | Encode text to Base64 (UTF-8 safe). |
| base64_decodeA | Decode Base64 back to text. |
| uuid_v4A | Generate one or more random UUID v4 strings. |
| json_validateB | Validate JSON and pretty-print or minify it. |
| sha_hashA | Hash text with SHA-256, SHA-384 or SHA-512. |
| timestamp_to_isoA | Convert a Unix timestamp (seconds or ms) to an ISO-8601 UTC datetime. |
| url_encodeA | Percent-encode a URL string (also decodes if asked). |
| case_convertA | Convert text casing: snake, kebab, camel, pascal, upper, lower. |
| password_generateA | Generate a cryptographically secure random password. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 9 tools
Each tool performs a distinct, well-separated utility operation. There is no meaningful overlap between encoding, hashing, UUID generation, timestamp conversion, or case conversion.
Most names follow an object_verb or object_noun snake_case pattern (base64_encode, url_encode, password_generate). A few, like uuid_v4, sha_hash, and timestamp_to_iso, deviate by omitting a clear verb or using a different noun structure, which introduces minor inconsistency.
Nine tools is well-scoped for a general-purpose utility kit. Each tool provides a distinct standalone function without unnecessary bloat.
The set covers a solid range of common developer utilities—encoding, hashing, validation, UUID generation, timestamp conversion, and text manipulation. It lacks reverse conversions like ISO-to-Unix timestamp or additional hash algorithms, but no major dead ends exist for the stated toolset.