Development
Compress HTML by removing comments, collapsing whitespace and minifying inline CSS/JS
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/html-minifier' \
-H 'Content-Type: application/json' \
-d '{"htmlInput":"Enter HTML code to minify...","collapseWhitespace":true,"removeComments":true,"removeRedundantAttributes":true,"minifyInlineCss":true,"minifyInlineJs":true,"removeOptionalTags":false}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/html-minifier| Name | Type | Required | Description |
|---|---|---|---|
| htmlInput | textarea | Yes | — |
| collapseWhitespace | checkbox | No | Collapse consecutive whitespace characters into a single space |
| removeComments | checkbox | No | Strip HTML comments (conditional comments are preserved) |
| removeRedundantAttributes | checkbox | No | Drop attributes that match their element defaults (e.g. type="text" on inputs) |
| minifyInlineCss | checkbox |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-html-minifier": {
"name": "html-minifier",
"description": "Compress HTML by removing comments, collapsing whitespace and minifying inline CSS/JS",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=html-minifier",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "html-minifier",
"arguments": {
"htmlInput": "Enter HTML code to minify...",
"collapseWhitespace": true,
"removeComments": true,
"removeRedundantAttributes": true,
"minifyInlineCss": true,
"minifyInlineJs": true,
"removeOptionalTags": false
}
}
}Questions or issues? Contact [email protected]
| Compress CSS inside <style> tags and style="" attributes |
| minifyInlineJs | checkbox | No | Compress JavaScript inside <script> tags and event handlers |
| removeOptionalTags | checkbox | No | Drop tags that browsers infer (e.g. closing </li>, </p>) |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}