html_cleaner
Simplify HTML files by stripping unnecessary tags and attributes. Input a file path, and save the cleaned output to a specified directory with this MCP server tool.
Instructions
Clean HTML by removing unnecessary tags and attributes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputPath | Yes | Path to the input HTML file | |
outputDir | Yes | Directory where cleaned HTML should be saved |
Input Schema (JSON Schema)
{
"properties": {
"inputPath": {
"description": "Path to the input HTML file",
"type": "string"
},
"outputDir": {
"description": "Directory where cleaned HTML should be saved",
"type": "string"
}
},
"required": [
"inputPath",
"outputDir"
],
"type": "object"
}