glim
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., "@glimPublish index.html and give me the preview 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.
Publish a self-contained HTML file or directory and get a short, readable link to
show someone — from the command line or from a coding agent via MCP. glim runs its
own server; put it behind a reverse proxy for a public URL, or use --local for a
loopback link with no proxy at all.
Self-host the HTML artifacts a coding agent produces. Instead of a preview that lives on a vendor's servers, glim keeps every agent-generated page on your own infrastructure, at your own domain, under your own access controls.
Install
curl -fsSL https://raw.githubusercontent.com/samuelloranger/glim/main/install.sh | shOr build from source: go build -o glim .
Related MCP server: Share HTML
Quick start
glim config --domain https://glim.example.com # optional; omit for localhost links
glim serve & # run the preview server
glim report.html --title "Diff review" # -> https://glim.example.com/diff-review-a1b2/Without a domain, links are http://127.0.0.1:PORT/.... --local auto-starts the
server and returns a loopback link:
glim report.html --title "Quick look" --localCommands
glim <entry.html|dir> [--title T] [--project P] [--ttl 6h] [--local] [--qr] publish, print URL
glim serve [--bind ADDR] [--port N] [--root DIR] run the preview server
glim config [--domain URL --bind ADDR --port N --root DIR --ttl 6h] show or set config
glim caddy print a reverse-proxy vhost
glim ls | rm <name>... | gc manage previews
glim extend <name> <ttl> | pin <name> change a preview's lifetime
glim open <name> | status open a link / show status
glim mcp run as an MCP server
glim install <claude|codex|cursor> wire into an agent
glim versionConfig
~/.glim/config.json (overridable by GLIM_DOMAIN, GLIM_BIND, GLIM_PORT,
GLIM_ROOT, GLIM_TTL). A published preview lives under root until its TTL
elapses; expired previews are pruned on the next command and by glim gc.
Agent integration (MCP)
glim install <agent> registers glim's MCP server (tools: present, list,
revoke, pin, extend) and writes a steering rule so the agent prefers glim
for previews. Supported: Claude, Codex, Cursor.
Behind a reverse proxy
Run glim serve bound where your proxy can reach it (--bind 0.0.0.0), point the
proxy at HOST:PORT, and set --domain so links use the public URL. glim caddy
prints a ready Caddy vhost. Keep it behind your usual access controls; a link's
readable slug carries a short random suffix but is not a secret.
Run as a service
contrib/glim.service is a systemd user unit:
mkdir -p ~/.config/systemd/user
cp contrib/glim.service ~/.config/systemd/user/
systemctl --user enable --now glim
loginctl enable-linger "$USER" # survive logout/rebootLicense
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Publish HTML, files, or a URL to a permanent public URL, then update it — from any MCP agent.
Publish HTML, Markdown, and multi-file sites as shareable URLs instantly via MCP.
Publish and manage existing HTML presentations from an MCP-capable Agent.
Publish AI-generated HTML & Markdown to a hosted, shareable URL via MCP.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceEnables agents to publish HTML artifacts to permanent, shareable, versioned pages on Artifyde via MCP.65 npmMIT
- FlicenseNot gradedqualityCmaintenanceEnables sharing self-contained HTML files via public or access-key-protected private links. Provides MCP tools to create shares, retrieve public share metadata, and describe the service.3-
- AlicenseNot gradedqualityBmaintenanceEnables agents to upload, list, delete, and retrieve public URLs for self-contained HTML files on a remote nginx server via MCP, with a management page for browsing and previewing.MIT
- AlicenseAqualityAmaintenanceEnables publishing sanitized static HTML pages from an MCP agent and receiving shareable URLs, with tools for updating, listing, publishing, and deleting pages.127 npmMIT