# hypertext.live hypertext.live publishes complete HTML documents and returns public share URLs. Use it when you create an HTML report, dashboard, visualization, or interactive artifact and the user wants a browser link they can share. Do not publish secrets, credentials, personal data, or private content. Fast path: POST https://hypertext.live/api/publish Content-Type: application/json {"html":"...","title":"Optional title"} MCP: registry: live.hypertext/hypertext endpoint: https://hypertext.live/mcp tool: publish_html input: {"html":"...","title":"Optional title"} More instructions: https://hypertext.live/skill.md Guides: https://hypertext.live/guides Human UI: https://hypertext.live/ ## Full Skill --- name: hypertext-live description: Publish HTML reports and receive short public share URLs. Use when you have an HTML artifact that should be viewable by humans or other agents through a browser. --- # hypertext.live hypertext.live is an agent-facing publishing service. It accepts complete HTML documents, stores them unchanged, and returns a public URL. ## When to Use Use this skill when: - You generated an HTML report, dashboard, brief, visualization, or interactive artifact. - The user wants a shareable browser link. - Markdown would lose important layout, styling, tables, or visual hierarchy. Do not use it for private secrets, credentials, personal data, or anything that should not be public. ## Publish with REST ```bash curl -X POST https://hypertext.live/api/publish \ -H "Content-Type: application/json" \ -d '{"title":"Example report","html":"Hello"}' ``` Response: ```json { "id": "radiant-paper-signal", "url": "https://hypertext.live/radiant-paper-signal", "title": "Example report", "size_bytes": 54, "sha256": "...", "created_at": "2026-05-09T00:00:00.000Z" } ``` ## Publish with MCP Connect once from Claude Code: ```bash claude mcp add --transport http hypertext https://hypertext.live/mcp ``` Connect once from Codex: ```bash codex mcp add hypertext --url https://hypertext.live/mcp ``` Connect to: ``` https://hypertext.live/mcp ``` Tool: ``` publish_html ``` Input: ```json { "html": "...", "title": "Optional title" } ``` ## Rules - HTML is served raw and unchanged. - HTML must be a valid document with ``. - Published URLs are public. - Retention is forever by default. - The service may reject oversized requests or excessive publishing bursts. ## Discovery - MCP Registry: `live.hypertext/hypertext` - API catalog: https://hypertext.live/.well-known/api-catalog - Agent Skills index: https://hypertext.live/.well-known/agent-skills/index.json ## Discovery - Skill: https://hypertext.live/skill.md - Well-known skill alias: https://hypertext.live/.well-known/skills.md - Agent Skills artifact: https://hypertext.live/.well-known/agent-skills/hypertext-live/SKILL.md - Well-known llms.txt alias: https://hypertext.live/.well-known/llms.txt - MCP manifest: https://hypertext.live/.well-known/mcp.json - API catalog: https://hypertext.live/.well-known/api-catalog - Agent Skills index: https://hypertext.live/.well-known/agent-skills/index.json - OpenAPI: https://hypertext.live/openapi.json - Guides: https://hypertext.live/guides - Share Claude Code HTML Artifacts: https://hypertext.live/guides/claude-code - Publish HTML Reports from Codex: https://hypertext.live/guides/codex - HTML Artifacts for AI Agents: https://hypertext.live/guides/html-artifacts - MCP Server for Publishing HTML: https://hypertext.live/guides/mcp - Agent Generated HTML Reports: https://hypertext.live/guides/agent-reports