x402-title-case
Title Case: Title Case
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | Text to process | |
| input | No | Input to process |
Title Case: Title Case
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | Text to process | |
| input | No | Input to process |
Changes observed during successful MCP inspections.
Input schema / properties / textAdded value: +{
+ "description": "Text to process",
+ "type": "string"
+}Input schema / properties / inputAdded value: +{
+ "description": "Input to process",
+ "type": "string"
+}Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden, and it discloses nothing: no purity/safety signal, no note on how casing rules handle edge cases, articles, or acronyms, no idempotency or return behavior. A one-line tautology is far short of the bar for an unannotated tool.
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?
It is short, but this is under-specification rather than conciseness; the single phrase is a redundant echo of the name and contains no information payload. A one-sentence statement of what transformation is applied would cost nothing and double the value.
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 an unannotated tool with two ambiguous parameters and no output schema, the definition should explain the transformation, the casing rules, and which input parameter to use. None of that is present, so the definition is not sufficient for an agent to call it confidently.
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 nominally 100%, but the two parameters are near-duplicates ('text' described as 'Text to process', 'input' described as 'Input to process'), leaving genuinely ambiguous which one to populate or whether both are expected. The description does nothing to disambiguate this, which is exactly where description text would have added the most value.
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 'Title Case: Title Case' merely restates the tool name and title with no verb or resource elaboration. An agent can guess it converts text to title case from the name alone, but the description itself contributes nothing beyond that inference and gives no scope or sibling differentiation against x402-case, x402-sentence-case, x402-toggle-case, x402-pascal-case, etc.
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?
No when-to-use guidance, no exclusions, no named alternative. With many case-manipulation siblings (x402-case, x402-sentence-case, x402-kebab-case, x402-snake-case), the absence of routing guidance is a real gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.