Skip to main content
Glama

Slugify / case-convert / template-fill

text

FREE. Text transforms. op='slugify' -> URL slug; op is one of camel|pascal|snake|kebab|constant|dot|path|title|sentence|upper|lower for case conversion; op='template' fills {{placeholders}} from data. Args: op, text (for slugify/case), or template + data (for template).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
opYesslugify | template | camel | pascal | snake | kebab | constant | dot | path | title | sentence | upper | lower
dataNoObject of values for op='template'.
textNoInput text for slugify/case ops.
strictNotemplate: throw on missing keys.
templateNoTemplate string for op='template', with {{key}} placeholders.
separatorNoSlug separator (default '-').

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden of behavioral disclosure. It adds useful context like 'FREE' and explains the template placeholder mechanism, but it doesn't mention output format, error behavior, or strict mode handling. This is a moderate level of transparency given the tool's simplicity.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and information-dense, front-loading the key point ('Text transforms') followed by a concise enumeration of operations and argument mappings. All sentences earn their place; no filler is present.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers all operation modes and parameter relationships, which is substantial for a 6-parameter tool. It lacks explicit return-value details, but the schema and operation names imply the transformed string. Given no output schema and no annotations, the description is reasonably complete for successful invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, but the description adds meaningful grouping: 'op, text (for slugify/case), or template + data (for template)'. It clarifies how the parameters combine for different modes, going beyond the individual schema descriptions and adding conceptual value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it performs 'Text transforms' and enumerates exact operations (slugify, case conversion variants, template filling). It distinguishes from sibling tools by its specific text-processing scope, and the op list leaves no ambiguity about what the tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides clear context on when to use each mode: 'op='slugify' -> URL slug', case conversion ops, and template filling with placeholders. It doesn't explicitly name alternative sibling tools or exclusion criteria, but the context is unambiguous for a text-transformation utility.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct operation: unit conversion, cron parsing, currency conversion, date math, diff, encoding, hashing, ID generation, JSON schema validation, regex, RRULE expansion, text transforms, and timezone conversion. Even related tools like convert, currency, and timezone are clearly separated by domain, with descriptions that eliminate ambiguity.

Naming Consistency5/5

All tool names are lowercase single-word identifiers without separators or camelCase, forming a clean and predictable pattern. While some are verbs (convert, diff, encode) and others nouns (cron, currency, id), the uniform naming style ensures consistency.

Tool Count5/5

13 tools is well-scoped for a general-purpose utility belt. Each tool covers a common utility without redundancy, fitting comfortably within the ideal 3-15 range.

Completeness5/5

The tool surface covers a broad range of utilities: unit and currency conversion, date/time handling (datemath, timezone, cron, rrule), text processing (text, encode, regex, diff), cryptography (hash), ID generation, and schema validation. No obvious gaps exist for the stated purpose.