# hdply > hdply (https://hdply.com) turns a single HTML file into a live website in seconds. > Free plan: 20 sites, unlimited edits, HTTPS, own subdomain ({name}.hdply.com), visitor stats, version history. > Account-less trial: paste HTML on the homepage, get a live site for 1 hour. ## Key pages - https://hdply.com/ : product + instant trial deploy (paste HTML, no signup) - https://hdply.com/pricing/ : Free vs Pro ($4/mo, unlimited sites) - https://hdply.com/docs/api/ : REST API documentation - https://app.hdply.com/ : console (signup, deploy, stats, API keys) ## API for agents Base URL: https://api.app.hdply.com Auth: "Authorization: Bearer hdply_sk_..." (personal key from the console dashboard) - GET /v1/projects : list sites - POST /v1/projects : create site; JSON {"name"?, "html"?}; goes live instantly - GET /v1/projects/{id}/html : read live HTML ({id} = numeric id or subdomain) - PUT /v1/projects/{id}/html : publish new HTML (raw text/html body, max 1MB) - GET /v1/projects/{id}/deployments : version history (API deploys tagged source=api) No delete endpoint (web-only by design). Every deploy is versioned and restorable. Sites are served byte-for-byte at https://{subroute}.hdply.com with HTTPS. ## MCP server (Claude Desktop/Code and other MCP clients) Streamable HTTP endpoint: POST https://api.app.hdply.com/mcp (same Bearer key auth). Tools: list_sites, create_site, get_site_html, deploy_site, get_deploy_history. Claude Code: claude mcp add --transport http hdply https://api.app.hdply.com/mcp --header "Authorization: Bearer hdply_sk_..."