x402-markdown-html
Markdown HTML: Convert Markdown to HTML.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| md | No | Md to process | |
| text | No | Text to process |
Markdown HTML: Convert Markdown to HTML.
| Name | Required | Description | Default |
|---|---|---|---|
| md | No | Md to process | |
| text | No | Text to process |
Changes observed during successful MCP inspections.
Input schema / properties / textAdded value: +{
+ "description": "Text 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 almost nothing: not whether conversion is lossless, whether embedded HTML is preserved or escaped, which parameter actually holds the input, or what gets returned. For a conversion tool with zero annotation coverage this is a real gap.
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?
A single short sentence with the action front-loaded and no wasted words. It is efficient, though arguably under-specified rather than truly concise.
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?
The task is simple and there is no output schema to explain, so a short description can suffice, but the md-vs-text ambiguity and the absence of any usage or behavioral note leave an agent with unanswered questions before invoking it.
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 100%, so the baseline is 3, but the two properties (md: 'Md to process', text: 'Text to process') are near-duplicates and the description does nothing to disambiguate them or explain that neither is required. It adds no meaning beyond the schema.
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 and transformation direction (Markdown to HTML), which an agent can distinguish from the inverse sibling x402-html-to-markdown. It does not, however, name or contrast itself with near-neighbours like x402-markdown, x402-markdown-tool, or x402-web2md, all of which appear in the sibling list.
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 guidance on when to use this over the many other markup/markdown tools in the sibling set, and no exclusions or prerequisites. The agent must infer usage entirely 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.