livefolio
OfficialProvides public sharing through on-demand Cloudflare Quick Tunnel, generating share links and allowing tunnel control from the MCP server.
Supports an optional ngrok custom-domain override for the public sharing tunnel, enabling folios to be served through an ngrok hostname.
Allows pointing LiveFolio at a local Ollama instance as a model provider for local AI folio creation and editing without external API keys.
Allows connecting an OpenAI API key as a model provider for generating and chat-editing folios, including tool-calling edits that create new versions.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@livefolioTurn this HTML into a folio, publish it, and share the link."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
LiveFolio OSS
The sharing layer for AI-generated HTML. Free. Local. Yours.
AI models are great at producing interactive HTML — decks, dashboards, documents, data stories — but the result usually dies as a file. LiveFolio is the missing host-and-share layer for those artifacts: a local-first server that versions every change, renders folios in a safe sandbox, collects pin-point feedback, and publishes them to the web through an on-demand tunnel. Your agents publish through the built-in MCP server; people view, react, and comment through a share link.
Everything runs on your machine: a single database.json, your own AI keys
(or a local Ollama), zero accounts, zero telemetry.

Install
Requires Node.js 20+. No database, no Docker, no .env — nothing.
1. One command (recommended)
npx @livefolio-cloud/cliDownloads the current standalone build, boots it on a free port, and opens
your browser. Data lives in ~/.livefolio/data; upgrading is just
npx @livefolio-cloud/cli --update.
--port <n> # prefer a specific port
--data-dir <dir> # put data somewhere else
--update # re-download the latest build
--no-open # don't open a browserThe
@livefolioscope on npm belongs to an unrelated project — the package is@livefolio-cloud/cli.
2. From source
git clone https://github.com/LiveFolio-Cloud/LiveFolio-oss.git
cd LiveFolio-oss
npm install
npm run devOpen http://localhost:3001 (port 3001 is pinned
so LiveFolio can sit next to your other dev servers). For a production build:
npm run build && npm start.
3. Python SDK
Talk to any LiveFolio instance — local or hosted — from Python:
pip install livefoliofrom livefolio import LiveFolio
# A local instance — OSS runs without accounts, so any key string works
client = LiveFolio("local", base_url="http://localhost:3001")
client.create_folio(
title="Quarterly Review",
initial_html="<h1>Q3 Highlights</h1><p>Revenue up 24%</p>",
project_mode="deck",
)
for f in client.list_folios():
print(f.title)Verified against a local OSS instance (list_folios, create_folio).
First run — connect a model
The dashboard asks for a model before anything else: paste an API key (OpenAI · Anthropic · Gemini · DeepSeek) or point at a local Ollama. Keys live in your browser and travel only to the local server — nothing leaves your machine.

Change or rotate keys any time in Settings → General:

Create, edit, and chat with AI
Create a folio from the sidebar (+ New folio — blank, upload, or template) or let an agent publish one over MCP. Open it and switch to the Chat tab: the model menu offers everything you connected, and the assistant edits your actual files through tool calls — each change lands as a new version you can diff and restore.

No model connected yet? The chat asks for the key itself — the model slot becomes the shortcut:

Go live in one click
Hit the globe in the folio header → Go live opens a Cloudflare Quick Tunnel and gives you a share link for anyone on the web. Drafts stay private until you flip Public link on.

Settings → Sharing / Tunnel shows your master key, tunnel state, and an optional custom-domain override (ngrok / your own Cloudflare hostname):

Related MCP server: Terrarium
What you can do
Version every change — every manual save or AI edit creates a named checkpoint; compare and restore from the version rail.
Build with chat (BYOK) — describe a folio and it's generated: deck, document, spreadsheet, dashboard, or infography. Your keys, your machine.
Chat-edit any folio — edit, restyle, add or delete pages, apply a design system, export. Providers with native function-calling do the full tool loop.
Publish and share — on-demand tunnel, public links, comments and reactions from guests, all stored locally.
Collect precise feedback — reviewers pin comments directly on the rendered page; those pins compile into a structured design brief your agent can read and act on.
Design systems included — 140+ portable specs in
design-systems/, applicable from the chat.Agent-native — your Claude Code / Cursor / any MCP client reads and writes your library over the local MCP server.
What runs locally vs. what needs Cloud
Everything below is honest about the boundary — a local instance exposes no half-working versions of Cloud features.
Capability | OSS (local) | Cloud |
Create / edit / version folios | ✅ | ✅ |
AI creation & editing | ✅ with your own key | ✅ managed, no key setup |
Comments, pins, reactions | ✅ | ✅ |
Public sharing (tunnel) | ✅ | ✅ hosted domains |
MCP server for agents | ✅ full local surface | ✅ hosted |
Data storage |
| managed Postgres |
Accounts, teams, roles | — | ✅ |
Public profile / @handles / follows | — | ✅ |
Explore marketplace | — | ✅ |
Paid access, checkout, payouts | — | ✅ |
Custom domains, SSO, audit | — | ✅ |
The practical difference for AI: locally you bring a provider key; on Cloud models are managed server-side and there's nothing to configure.
Connect an AI agent (MCP)
LiveFolio exposes a Model Context Protocol server (SSE + JSON-RPC 2.0) at:
http://localhost:3001/api/mcp{
"mcpServers": {
"livefolio": {
"url": "http://localhost:3001/api/mcp"
}
}
}Your agent can then work with your library directly:
Tool | What it does |
| Browse folios and pull full source + version history |
| Publish a new folio or push changed files as a new version |
| Remove a folio |
| Compile all open review pins into a markdown brief |
| Fetch a folio's colors, type scale, and layout rules |
| Leave and clean up feedback on a folio |
| Check and control the public tunnel from chat |
| Flip a folio between private draft and public link |
The master key from Settings → Sharing & Tunnel authenticates agent access; regenerate it any time. (Marketplace, paid access, teams, and seller tools exist in LiveFolio Cloud — they're hidden in OSS.)
Privacy posture
All folios, versions, comments, and settings live in
database.jsonin the working directory — back up by copying that one file.AI keys are stored in your browser's
localStorageand used only by the local server for your requests.The app phones home never — no analytics, no tracking. The only outbound paths are the tunnel you switch on yourself and the model endpoints you configure.
With the tunnel off, everything is reachable only from your machine.
Repository layout
app/ Next.js routes — /app workspace, /share viewer, /api/*
components/ Studio, chat, share, and app-shell UI
lib/ flat-file DB (lib/db.ts), env, AI providers, app shell
design-systems/ 140+ portable design specs (DESIGN.md each)
assets/screenshots/ README images
server.ts Production entry (node server.ts after npm run build)Docs live at livefolio.cloud/docs — one
source for both editions. A local instance's /docs redirects there, so
there's no second copy to drift.
How this repo is maintained: this tree is a released edition of LiveFolio, not a development branch — it receives periodic, verified updates from the maintainers, and every published revision is self-consistent (what you clone is what runs). PRs and issues are welcome; accepted changes land in a future release.
Need more than local?
Everything above runs on your machine, forever, for free. When you want your work to reach people — and to earn from it — LiveFolio Cloud is the hosted edition of the same product.
Get discovered in Explore
Publishing locally means sharing a link. Publishing on Cloud means being found. Every folio you make public can be listed in Explore — the marketplace where people browse, preview, and buy interactive HTML that others have built. Your work gets a home page, a profile, and an audience instead of a URL that lives in a chat thread.
List folios publicly with a one-step listing consent
Get reactions, comments, and follower counts on your profile
Rank and surface by what people actually open
Sell your folios
Turn any folio into a product without leaving the editor. Set a price, gate the content, and get paid — the same folio you built locally, sold from a hosted page that handles delivery and access for you.
Paid access — one-time purchase, per folio or per workspace
Paywall and preview — first-page preview, blurred gate, or timed trial
Payouts — connect your account and receive payouts directly
Earnings dashboard — sales, net earnings, and per-folio revenue
Buyer licenses — clear terms, with copy/duplication controls you set
Plus the team layer
Team workspaces and roles, Slack/Discord connectors, custom domains, per-viewer analytics, and managed hosting that scales past your laptop.
Same MCP protocol end to end — your agents and workflows move over with zero migration.

→ livefolio.cloud — start free, explore what others are building, and publish your first paid folio.
License
This server cannot be deployed
Maintenance
Related MCP Connectors
Host the HTML or Markdown pages your AI generates and share each as a link with comments and access.
Build, version, review, and export websites, web apps, and games from a conversation.
Comment on AI-generated webpages; feedback flows back to your coding agent. Free, MIT, local-first.
MarkupBase turns AI-generated Markdown and HTML into durable, versioned artifacts that people can review and discuss. Its MCP server lets agents publish new versions, preserve contextual comments, include hosted images, and respond to feedback through secure account-linked identities, creating a clear human review boundary without requiring real-time editing.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to collaboratively design and edit web pages on an infinite canvas using real HTML/CSS, with tools for reading, mutating, and exporting documents.938 npmLGPL 3.0
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to publish HTML artifacts for human review, receive anchored feedback, and iterate until approval.2-
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to snapshot UI versions, retrieve live URLs, and compare changes across iterations for local-first web development.MIT
- AlicenseNot gradedqualityAmaintenanceLocal-first HTML review workspace for AI coding agents, enabling direct text and formatting edits, element comments, area annotations, and slide-aware review with durable agent handoffs.1MIT