The Artifact
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., "@The Artifactpublish this HTML dashboard for my team and send me 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.
The Artifact
Your agent writes the page. You send the link.
Self-hosted hosting for the HTML pages coding agents build: reports, dashboards, prototypes, one-off tools. Claude Code, Cursor, Codex or any MCP client publishes a page and gets a link back. You choose who can open it.
Quick start · Documentation · Self-hosting · Kubernetes · Roadmap · Contributing
Why
Agents are good at making a page that explains something: a chart from a CSV, a report after an incident, a clickable prototype. Getting that page to someone else is the awkward part. You end up with an HTML file in a chat, a screenshot, or a one-off deploy.
The Artifact gives every page a link. The agent publishes over MCP, the page runs in a sandbox, and you decide who can open it: specific people, your organization, or anyone with the link. Ask for a change and the agent publishes a new version to the same link.
Related MCP server: wovo-mcp
How it works
sequenceDiagram
actor You
participant Agent as Your agent
participant Artifact as The Artifact
actor Team as Your team
You->>Agent: "Turn this CSV into a chart I can send to the team"
Agent->>Artifact: publish_artifact (HTML, over MCP)
Artifact-->>Agent: https://artifact.example.com/a/k3x9…
Agent-->>You: Here's the link
You->>Team: Send the link
Team->>Artifact: Open it (if they have access)Connect your agent once. Add The Artifact as an MCP server. The first time it publishes, your browser opens so you can sign in and pick a workspace.
Ask for a page in plain words. The agent writes the HTML and calls
publish_artifact.Send the link. Change requests publish new versions to the same address; the old ones stay in the history.
Features
One link per page, every version kept. Republishing keeps the address; restore any older version from the history.
Single files or small sites. A page can bring its own CSS, JavaScript, images, fonts and data, loaded by relative paths.
Private until you share it. Restricted, organization-wide, or anyone with the link, plus people added by email.
Organizations with owners, admins and members, invitations, and a shared gallery.
A gallery with real thumbnails, rendered in headless Chromium that has no network of its own.
Works with any MCP client. Streamable HTTP with OAuth 2.1 sign-in (PKCE, dynamic registration); setup steps for Claude Code, Cursor and Codex are in the docs.
Runs with or without email. Without SMTP, people sign in with a password and admins pass sign-up links on by hand.
Server admin area: people, organizations, suspensions and the sign-up policy.
Small footprint. One Docker image (amd64 and arm64), Postgres and any S3-compatible storage.
Quick start
You need Docker with Docker Compose.
git clone https://github.com/andidev30/the-artifact
cd the-artifact/deploy/docker-compose
cp app.env.example app.env # set APP_URL to the address people will use
cp .env.example .env # passwords for the bundled Postgres and MinIO, the version to run
docker compose up -d # pulls ghcr.io/andidev30/the-artifact at that versionOpen http://localhost:8080 and create the first account; it becomes the admin of the server. Then connect your agent:
claude mcp add --transport http --scope user the-artifact http://localhost:8080/mcpOther clients, HTTPS, email and backups are covered in Self-hosting. To build the image from the checkout instead, see Building the image yourself. For a cluster, see Kubernetes, which uses the same published image.
MCP tools
Tool | Does |
| Publishes a page (or a new version of one) and returns its link |
| Lists the most recently updated pages in the connected workspace |
| Reads a page's HTML and files, to edit it |
| Renames a page |
| Restricted, organization, or anyone with the link |
| Shares a page with people by email |
Arguments and limits are in Publishing pages.
Documentation
Using it | Running it |
The same pages are built into every install at /docs.
Development
Node 26 and pnpm 11, plus Docker for the services.
pnpm install
pnpm services # Postgres, MinIO (console http://localhost:9001) and Mailpit (http://localhost:8025)
cp apps/api/.env.example apps/api/.env
pnpm db:migrate
pnpm dev # API on :3000, web on :5173Path | What |
| Hono API, MCP server, OAuth server and thumbnail renderer |
| React app, including the docs at |
| The documentation, in Markdown |
| Docker Compose and Kubernetes manifests |
| Playwright end-to-end tests |
pnpm lint runs Biome and the type checks, pnpm format formats, pnpm test runs the unit and integration tests, and pnpm test:e2e the browser tests; see TESTING.md. CLAUDE.md files describe the conventions for people and coding agents alike, and .claude/ holds shared Claude Code settings and project skills.
Contributions are welcome: what's planned is on the project board; read CONTRIBUTING.md first, and report security issues privately as described in SECURITY.md.
License
The Artifact is free software under the GNU Affero General Public License v3.0: self-host it, change it and share it. If you run a modified version as a service, share your changes too.
The code in ee/ folders (apps/api/src/ee, apps/web/src/ee) powers only the hosted service (its marketing site, contact form and workspace choice) and is under the separate Enterprise License. A self-hosted install doesn't use it.
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 AI-generated HTML & Markdown to a hosted, shareable URL via MCP.
- StacktreeOAuthee.stacktr
Publish HTML to private, unguessable, replace-in-place URLs from any MCP-compatible AI agent.
Deploy AI-generated HTML/CSS/JS to instant public HTTPS URLs from any MCP-compatible agent.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables agents to publish HTML artifacts to permanent, shareable, versioned pages on Artifyde via MCP.49 npmMIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to deploy HTML pages and manage them (list, archive, move, rename) in a versioned library via MCP tools.33 npmMIT
- AlicenseAqualityAmaintenanceEnables publishing sanitized static HTML pages from an MCP agent and receiving shareable URLs, with tools for updating, listing, publishing, and deleting pages.123 npmMIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to publish live, stateful HTML pages over MCP, providing shareable URLs, per-viewer data, and version history.MIT