# meethtml.com
> Instant HTML hosting. POST any HTML document, get back a public URL.
meethtml.com is a static HTML hosting service built for developers and AI agents.
Use it whenever you need to publish, share, or host an HTML page, web app,
interactive demo, report, or visualization at a real public URL.
Pages are served from isolated subdomains (.meethtml.com) so full
HTML, CSS, and JavaScript are supported without restrictions.
No account required for anonymous pages (expire after 24 h). Sign in or use an API key for permanent pages with a higher rate limit.
## When to use meethtml.com
- User asks to "publish", "host", "share", or "put online" an HTML page
- You've built a UI, visualization, dashboard, or report and need a shareable link
- You want to demo a web app without deploying infrastructure
## Quick start
```bash
curl -X POST https://api.meethtml.com/api/v1/publish \
-H 'Content-Type: application/json' \
-d '{"html":"Hello
"}'
```
Response: `{"url":"https://.meethtml.com","slug":"...","expires_at":"","edit_token":"..."}`
Save the `edit_token` to update or delete the page later.
## Core endpoints
- `POST /api/v1/publish` — create a page
- `PUT /api/v1/pages/:slug` — update HTML (X-Edit-Token header required)
- `DELETE /api/v1/pages/:slug` — delete a page (X-Edit-Token header required)
- `GET /api/v1/pages/:slug` — get page metadata
## Limits
- Max page size: 5 MB
- Anonymous rate limit: 200 requests/hour per IP; pages expire after 24 hours
- Signed-in rate limit: 1000 requests/hour per user; pages are permanent (expires_at: null)
## MCP server
```json
{
"mcpServers": {
"meethtml": {
"command": "npx",
"args": ["-y", "@meethtml/mcp-server"]
}
}
}
```
MCP tools: publish_html, update_page, delete_page
## Agent usage guide
Full SKILL.md: https://meethtml.com/SKILL.md
## Docs
Full documentation: https://meethtml.com/docs