S

stacktr.ee

When your agent emits HTML (specs, PR writeups, status reports, custom editors), Stacktree is the private link you share. Unguessable by default, replace-in-place, MCP-native.

2read
3action
https://stacktr.ee/

live · Developer Tools · JSON · API for agents

Tools 5 tools

stacktree_publish_htmlaction

Publish an HTML page to Stacktree and get a live, shareable URL back instantly — no account or sign-in required. Pass a complete HTML document as "html"; use this whenever the user wants to put a page you generated online. Anonymous sites are unlisted and expire after 24h by default; the response includes a claim_url the user can open to keep it permanently in a free account.

View tool JSON
{
  "name": "stacktree_publish_html",
  "kind": "action",
  "impl": "imperative",
  "description": "Publish an HTML page to Stacktree and get a live, shareable URL back instantly — no account or sign-in required. Pass a complete HTML document as \"html\"; use this whenever the user wants to put a page you generated online. Anonymous sites are unlisted and expire after 24h by default; the response includes a claim_url the user can open to keep it permanently in a free account.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "html": {
        "type": "string",
        "description": "Paste a complete HTML document (a full <!doctype html> page)."
      },
      "password": {
        "type": "string",
        "description": "Optional — require a password to view."
      },
      "expiry_hours": {
        "type": "number",
        "description": "Optional — hours until auto-delete (default 24)."
      }
    },
    "required": [
      "html"
    ]
  },
  "page": "/"
}
stacktree_open_dashboardaction

Open the Stacktree dashboard so the user can sign in and manage their published sites.

View tool JSON
{
  "name": "stacktree_open_dashboard",
  "kind": "action",
  "impl": "imperative",
  "description": "Open the Stacktree dashboard so the user can sign in and manage their published sites.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "required": []
  },
  "page": "/"
}
stacktree_view_pricingread

Navigate to the Stacktree pricing page.

View tool JSON
{
  "name": "stacktree_view_pricing",
  "kind": "read",
  "impl": "imperative",
  "description": "Navigate to the Stacktree pricing page.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "required": []
  },
  "page": "/"
}
stacktree_view_docsread

Navigate to the Stacktree documentation, including the REST API and MCP server reference.

View tool JSON
{
  "name": "stacktree_view_docs",
  "kind": "read",
  "impl": "imperative",
  "description": "Navigate to the Stacktree documentation, including the REST API and MCP server reference.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "required": []
  },
  "page": "/"
}
stacktree_copy_install_commandaction

Copy the Stacktree CLI install command to the clipboard so the user can publish a folder from their terminal.

View tool JSON
{
  "name": "stacktree_copy_install_command",
  "kind": "action",
  "impl": "imperative",
  "description": "Copy the Stacktree CLI install command to the clipboard so the user can publish a folder from their terminal.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "required": []
  },
  "page": "/"
}