Install
openclaw skills install fast-html-mcpGenerate, patch, read, and compress HTML pages for reports, dashboards, and docs with fast AI-agent speed and precise CSS selector updates.
openclaw skills install fast-html-mcpFive-tier MCP server for lightning-fast HTML generation from AI agents. 15 tools, 22 components, 25 templates — purpose-built for AI-driven page creation with sub-second patch times and AI-grade token compression.
npx -y @aimino.xdn/fast-html-mcp-server
Add to MCP client config:
{
"mcpServers": {
"fast-html-mcp": {
"command": "npx",
"args": ["-y", "@aimino.xdn/fast-html-mcp-server"]
}
}
}
claude mcp add fast-html-mcp -e npx -a "-y" -a "@aimino.xdn/fast-html-mcp-server"
list_templates
list_components
get_template_schema(template: "report")
get_component_schema(component: "hero")
render_page(
template: "report",
sections: [
{component: "hero", props: {title: "Q3 Report", badge: "Draft"}},
{component: "data-table", props: {headers: ["Metric","Value"], rows: [["Revenue","$1.2M"]]}}
],
output_path: "/tmp/report.html",
options: {title: "Q3 Report"}
)
read_html(path: "/tmp/report.html", mode: "compressed")
Read modes (by token efficiency):
structure — tree overview (70% savings)content — typed blocks (74% savings)compressed — summary + stats (87% savings)text — plain text only (97% savings, best for token budgets)patch_html(file_path: "/tmp/report.html", selector: "#content", html: "<p>Updated content</p>")
set_attribute(file_path: "/tmp/report.html", selector: "#main-title", attr: "class", value: "highlight")
read_html(path: "/tmp/report.html", mode: "compressed", offset: 0, limit: 1000)
check_consistency(path: "/tmp/report.html")
propagate_edit(path: "/tmp/report.html", entity: "Revenue", value: "$1.5M", sections: ["summary", "details"])
references/ — detailed examples and advanced use casesscripts/ — automation scriptsassets/ — templates and resources