miinideck
Publish an HTML page to a private, unguessable link straight from your agent — no build step, no Git, and nothing for the person you send it to install or…
Что умеет
- Create Page: Publish an HTML document to a private, unguessable miinideck link and return the shareable URL. Use this whenever the user wants to share, publish, host, send, or get a link for an HTML p
- Update Page: Replace the content of a page you already published, keeping the SAME private link. Use this whenever the user wants to update, edit, revise, fix, or re-publish a page you previously crea
- List Pages: List the miinideck pages the signed-in user has published, each with its private link.
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
Publish an HTML page to a private, unguessable link straight from your agent — no build step, no Git, and nothing for the person you send it to install or sign up for.
Use it whenever a conversation produces something worth looking at: a report, a dashboard, a slide deck, a small interactive tool. Pass the complete self-contained HTML and get a shareable URL back in about ten seconds. Republishing keeps the SAME link, so the URL you already sent someone shows your newest version instead of a stale copy.
Links are unguessable and not indexed by search engines by default. A password and an expiry can be set at publish time, and viewers never need an account.
It serves static front-end files. If what you built needs a live backend, a database, or auth, deploy that on a platform built for it and publish the static part here.
Список инструментов сервера (3)
Технические названия из tools/list. Нужны только разработчикам.
| create_page | Publish an HTML document to a private, unguessable miinideck link and return the shareable URL. Use this whenever the user wants to share, publish, host, send, or get a link for an HTML page, report, slide deck, or artifact you produced. Pass the COMPLETE, self-contained HTML document (including <!doctype html>) as `html`. |
| update_page | Replace the content of a page you already published, keeping the SAME private link. Use this whenever the user wants to update, edit, revise, fix, or re-publish a page you previously created — do NOT call create_page for that, which would mint a new throwaway link. Identify the page with `page` (its viewer URL or slug, e.g. from create_page or list_pages). Pass the COMPLETE, self-contained replacement HTML (including <!doctype html>) as `html`. Password, expiry, title, and project stay unchanged. |
| list_pages | List the miinideck pages the signed-in user has published, each with its private link. |