x402-format-time12
Format Time12: Format time in 12-hour notation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Date to process |
Format Time12: Format time in 12-hour notation.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Date to process |
Changes observed during successful MCP inspections.
Input schema / properties / dateAdded value: +{
+ "description": "Date to process",
+ "type": "string"
+}Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations supplied, the description carries the full behavioral burden and does not discharge it. It never states the accepted input format (time string, ISO datetime, timestamp?), whether an AM/PM marker is appended, what happens on unparseable input, or what the return value looks like. For a trivial read-only formatter the risk is low, but a caller still cannot predict the output shape.
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 short clauses, front-loaded with the action and the output format, with zero filler. It is efficient but borders on under-specification rather than being genuinely tight-but-complete.
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 one-parameter tool with no output schema and no annotations, the description covers the core purpose but omits exactly the details an agent needs to call it correctly: the expected input representation and the resulting output format. Adequate at minimum-viable level, not complete.
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%, so the baseline is 3, but the schema's own text ('Date to process') is uninformative and the description adds nothing to it. Notably the lone parameter is named 'date' while the tool formats a time, and neither source resolves this tension or specifies the accepted input syntax.
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?
States a specific verb+resource combination ('format time') and names the transformation ('12-hour notation'), so the agent knows exactly what it produces. It implicitly separates itself from x402-format-time24 through the 'Time12' naming and the '12-hour' qualifier, though it never explicitly contrasts with that sibling.
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 conditions or exclusions, and no mention of the obvious adjacent alternative (x402-format-time24). The agent is left to infer that this is the 12-hour counterpart purely from the name.
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.