x402-html-to-markdown
x402-html-to-markdown: Convert HTML to Markdown
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| html | No | Html to process | |
| text | No | Text to process | |
| input | No | Input to process |
x402-html-to-markdown: Convert HTML to Markdown
| Name | Required | Description | Default |
|---|---|---|---|
| html | No | Html to process | |
| 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"
+}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: not what the output looks like, how the input is selected, whether malformed HTML is tolerated, or whether the conversion is lossless. For a no-annotation tool this is a significant 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 line with no wasted words, which is appropriate in size for a trivial converter, but it is front-loaded with a restatement of the name rather than useful information.
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?
With no annotations, no output schema, and three mutually redundant optional string parameters, the description should clarify input selection and expected output but instead says nothing beyond the tool name. An agent cannot reliably call this tool based on the definition alone.
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?
Three parameters (html, text, input) all have generic 'X to process' descriptions that convey no distinction between them, and the tool description does nothing to resolve which one is expected. Nominally 100% schema coverage, but the coverage is vacuous, so the description fails to compensate for genuinely ambiguous parameter semantics.
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 names a specific verb and resource ('Convert HTML to Markdown'), so the purpose is legible. However, it is a verbatim restatement of the tool name with no differentiation from near-identical siblings such as x402-web2md, x402-strip-html, or x402-html-text-extract, leaving the agent to guess which conversion variant applies.
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?
There is no when-to-use guidance, no prerequisites, and no mention of alternatives. Given the extremely crowded sibling namespace of HTML/text conversion tools, this omission is meaningful rather than trivial.
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.