Just Publish
https://server.smithery.ai/just-done/justpublish/mcp**Just Publish** turns a website you built with AI into a live, public URL — without leaving the chat. No git, no CLI, no build step, no dashboard, and no login to fumble through. You hand it your files, it hands back a working link. It's built for the person who made a site with ChatGPT, Claude, or Cursor and just wants it online. ### How it works Call `deploy` with your files (HTML, CSS, JS, images) and an email. You get back a live `url`, a `site_id`, and an `edit_token`. Keep the token and you can update the same site anytime — either a full redeploy or a single-file edit. That's the whole flow. ### Tools - **`deploy`** — Publish a static site to a public URL. First call creates a new site and returns its `url`, `site_id`, and `edit_token`; pass those back to update it in place. - **`update_site_file`** — Change one or a few files on an existing site without resending the whole thing. - **`get_site_files`** — Read what's currently live before you edit. ### Who it's for Non-technical builders and AI agents that generate a static site and need it hosted in one step. If you can describe a page, you can publish it. ### Good to know - **No accounts required.** Edit access is held by the `edit_token` returned at publish time. - **Static sites only** — files in, URL out. No frameworks or build pipelines. - Free to start; a **$9/mo Builder** plan and **custom-domain** connection are available at [justpublish.ai](https://justpublish.ai).
How to connect
https://server.smithery.ai/just-done/justpublish/mcp
curl -X POST https://server.smithery.ai/just-done/justpublish/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}'