{
  "name": "hypertext.live",
  "description": "Publish complete HTML documents and receive short public share URLs.",
  "documentation_url": "https://hypertext.live/skill.md",
  "llms_txt": "https://hypertext.live/llms.txt",
  "endpoint": "https://hypertext.live/mcp",
  "mcp": {
    "transport": "http",
    "url": "https://hypertext.live/mcp"
  },
  "tools": [
    {
      "name": "publish_html",
      "description": "Publish a complete HTML document and return a public share URL.",
      "input_schema": {
        "type": "object",
        "required": [
          "html"
        ],
        "additionalProperties": false,
        "properties": {
          "html": {
            "type": "string",
            "description": "A complete HTML document beginning with <!doctype html>."
          },
          "title": {
            "type": "string",
            "description": "Optional title for the published page."
          }
        }
      },
      "output_schema": {
        "type": "object",
        "required": [
          "id",
          "url",
          "title",
          "size_bytes",
          "sha256",
          "created_at"
        ],
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string"
          },
          "url": {
            "type": "string",
            "format": "uri"
          },
          "title": {
            "type": [
              "string",
              "null"
            ]
          },
          "size_bytes": {
            "type": "integer"
          },
          "sha256": {
            "type": "string"
          },
          "created_at": {
            "type": "string",
            "format": "date-time"
          }
        }
      }
    }
  ]
}