@revxl/devtools
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| REVXL_PRO_KEY | No | License key for Pro features (format: REVXL-XXXX-XXXX-XXXX) |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| json_formatA | Format, minify, or validate JSON strings |
| base64A | Encode or decode Base64 strings |
| url_encodeA | URL encode or decode strings |
| uuid_generateA | Generate one or more v4 UUIDs |
| hash_textA | Hash text with MD5, SHA-256, or SHA-512 |
| timestampB | Convert between timestamp formats: epoch seconds, epoch ms, ISO 8601, human-readable |
| http_statusA | Look up HTTP status code name and category |
| jwtA | Decode a JWT to inspect header/payload/expiry, or create a new HMAC-signed JWT [PRO - 3 free trials] |
| regexA | Test a regex pattern against a string (with match details, groups, indices) and generate working code in JS/Python/Go/Rust/Java [PRO - 3 free trials] |
| cronA | Explain cron expressions in plain English, generate cron from natural language, and compute next run times with code snippets [PRO - 3 free trials] |
| json_diffA | Deep-compare two JSON objects and show all differences — added, removed, and changed values with paths [PRO - 3 free trials] |
| json_queryC | Query JSON data with dot-path expressions — supports nested keys, array indices [N], and wildcard * expansion [PRO - 3 free trials] |
| batchA | Run any free tool across multiple inputs in one call — up to 500 items. Only works with free (non-Pro) tools. [PRO - 3 free trials] |
| sql_formatA | Format and prettify SQL queries with proper indentation and clause separation [PRO - 3 free trials] |
| yaml_convertA | Convert between YAML, JSON, and TOML formats [PRO - 3 free trials] |
| chmodA | Convert between numeric (755) and symbolic (rwxr-xr-x) chmod permissions with explanation [PRO - 3 free trials] |
| secrets_scanB | Scan text for leaked secrets, API keys, tokens, passwords, and connection strings [PRO - 3 free trials] |
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 17 tools
Each tool targets a distinct developer utility—regex, cron, JSON diffing/querying/formatting, encoding, hashing, JWT, etc.—with no meaningful overlap. Even the JSON tools are clearly separated by operation: diff, query, format.
Most composite names use lowercase snake_case (json_diff, sql_format, url_encode) while well-known single-purpose tools use lowercase single words (regex, cron, chmod, jwt). This is largely consistent and readable, with minor deviation between single-word and underscored multi-word styles.
At 17 tools, the set is slightly above the typical 3-15 sweet spot, but the broad 'devtools' scope justifies each tool. There are no redundant utilities, and the count feels comprehensive without being overwhelming.
The tools cover a wide range of everyday developer tasks including JSON manipulation, encoding, hashing, timestamp conversion, SQL formatting, config conversion, regex, cron, secrets scanning, and JWT handling. Minor gaps exist (e.g., HTML escaping, string case conversion), but the core utility surface is largely complete for a general-purpose devtools server.