We are experiencing higher levels of website traffic, we are trying to expand. Thank you for your understanding.

Workflow recipes that turn tools into repeatable systems.

HTMLToolz stays free for quick one-off work. Paid plans add the automation layer: API batches, MCP prompts, extension sync, and team-ready workflow patterns.

Recipe stack 5

Launch, payload cleanup, QA, email repair, and agent context patterns.

Free to start, Pro to automate

SEO Launch Pack

Clean page metadata, generate URL-safe slugs, verify copy length, and prepare assistant-ready launch notes.

Site owners, freelancers, and launch checklists 4 tools

Outputs

  • Search/social metadata
  • Clean URL slugs
  • Readable launch copy metrics
  • Formatted head markup
API batch recipe
{
    "operations": [
        {
            "tool": "slug-generator",
            "input": "Launch Notes: HTMLToolz API and MCP Connector"
        },
        {
            "tool": "text-statistics",
            "input": "Paste page title, description, and launch copy here."
        },
        {
            "tool": "html-formatter",
            "input": "<head><title>Example</title><meta name=\"description\" content=\"Example page\"></head>"
        }
    ]
}
MCP prompt
Use HTMLToolz to create a launch-ready slug, check title and description copy length, and format the final head markup.
Pro

API Payload Cleanup

Format JSON, decode URL/Base64 fragments, inspect JWTs, and hash release payloads through one repeatable workflow.

Developers debugging webhooks, REST payloads, and logs 5 tools

Outputs

  • Readable JSON
  • Decoded query/body fragments
  • JWT header and payload
  • Checksum for verification
API batch recipe
{
    "operations": [
        {
            "tool": "json-formatter",
            "input": "{\"event\":\"invoice.paid\",\"items\":[1,2,3]}",
            "options": {
                "minify": false
            }
        },
        {
            "tool": "url-encoder",
            "input": "name=HTMLToolz%20Pro&status=active",
            "options": {
                "mode": "decode"
            }
        },
        {
            "tool": "hash-generator",
            "input": "release-v2",
            "options": {
                "algorithm": "sha256"
            }
        }
    ]
}
MCP prompt
Use HTMLToolz to format this JSON payload, decode any URL-encoded fields, and generate a SHA-256 checksum for the final payload.
Team

Client Handoff QA

Combine accessibility checks, HTML cleanup, color contrast review, and exportable notes into a repeatable QA handoff.

Small teams sending client-ready web updates 4 tools

Outputs

  • First-pass accessibility findings
  • Cleaner markup
  • Contrast issues to fix
  • Design-token inventory
API batch recipe
{
    "operations": [
        {
            "tool": "html-formatter",
            "input": "<main><h1>Client page</h1><p>Ready for QA</p></main>"
        },
        {
            "tool": "text-statistics",
            "input": "Paste client release notes here."
        },
        {
            "tool": "case-converter",
            "input": "client handoff qa complete",
            "options": {
                "mode": "title"
            }
        }
    ]
}
MCP prompt
Use HTMLToolz to clean this client handoff HTML, summarize readable QA notes, and prepare a concise release checklist.
Pro

Email HTML Repair

Format legacy email HTML, encode entities, minify production output, and keep reusable repair prompts synced.

Marketers and builders shipping email templates 4 tools

Outputs

  • Cleaner source template
  • Entity-safe copy
  • Production minified HTML
  • Reusable repair prompt
API batch recipe
{
    "operations": [
        {
            "tool": "html-formatter",
            "input": "<table><tr><td>Hello & welcome</td></tr></table>"
        },
        {
            "tool": "html-entity-encoder",
            "input": "Hello & welcome",
            "options": {
                "mode": "encode"
            }
        },
        {
            "tool": "html-minifier",
            "input": "<table> <tr> <td>Hello</td> </tr> </table>"
        }
    ]
}
MCP prompt
Use HTMLToolz to format this email HTML, encode unsafe copy entities, and produce a minified production version.
Agency

Agent Context Pack

Turn messy page snippets, payloads, and notes into structured context an assistant can safely reason over.

Agencies and advanced builders feeding assistants reliable context 5 tools

Outputs

  • Plain-text page context
  • Normalized JSON facts
  • Structured HTML from notes
  • Traceable context checksum
API batch recipe
{
    "operations": [
        {
            "tool": "html-stripper",
            "input": "<article><h1>Project Notes</h1><p>Use this content.</p></article>"
        },
        {
            "tool": "json-formatter",
            "input": "{\"client\":\"Example\",\"status\":\"ready\"}",
            "options": {
                "minify": false
            }
        },
        {
            "tool": "hash-generator",
            "input": "client-context-pack-v1",
            "options": {
                "algorithm": "sha256"
            }
        }
    ]
}
MCP prompt
Use HTMLToolz to strip this HTML to clean text, normalize the JSON facts, and hash the final context pack for traceability.