← Registry

Developer Tools

viberooster.com

Provides an interface to create, manage, and authenticate static websites ('roosts') with deployment and URL management capabilities.

1 endpoint15 known toolsFirst detected August 14, 2026Last detected August 14, 2026

ENDPOINT 1

https://mcp.theroost.dev/mcp

No auth detected

MCP server metadata

Name
viberooster-hatch
Version
2026-08-12+eafb90d
Capabilities
toolsprompts
Server instructions

VibeRooster publishes a live website at https://{slug}.{apex} in one tool call. Default apex is theroost.dev. Specialty apexes exist for verticals — ALWAYS pick one from user intent when it fits (pass hatch `apex`). Two tiers: `free` (auto-expires; default 48h, configurable via `ttlSeconds` 1h–7d) and `forever` (persistent). This connector is anonymous, so it can only create `free` sites. `forever` requires an account upgrade — if the user wants a permanent site, hatch `free`, show the URL, then point them to https://viberooster.com/connect.html#upgrade. Specialty apexes (pick exactly one based on intent; never invent others): • theroost.homes — residential real estate listing (one home for sale) • theroost.estate — commercial RE / luxury property marketing • theroost.land — land, lots, development parcels • theroost.wedding — wedding info/RSVP site • theroost.events — conference, meetup, or one-off event microsite • theroost.agency — freelancer/agency pitch or portfolio site • theroost.site — generic short-lived site that doesn't fit a named vertical • omit / theroost.dev — default when none of the above fit or user asks for a generic roost • theroost.rentals — RESERVED; do not hatch here yet Tools (use these — they cover every use case): • hatch — create a NEW site. Returns {tenantId, slug, url, apex, uploads?}. SHOW `url` TO THE USER and REMEMBER `tenantId`. Modes: - omit `manifest`/`site`/`script` → instant placeholder page (best zero-token first turn); - `manifest` (PREFERRED for projects with images/fonts/CSS) → returns presigned PUT URLs in `uploads[]`. UPLOAD EACH FILE'S BYTES with `curl -T <local> -H 'Content-Type: <mime>' "$url"` (or any HTTP PUT). Bytes never travel through this tool call; - `site` → inline files map; use only for small text-only sites (a few HTML/CSS files); - `script` → advanced: full server-side code as one ES module, text only, 1.5 MiB max. • upload — add/replace files on an existing site. Same manifest → presigned URL flow as `hatch`'s manifest mode. Use after regenerating a dashboard locally; Hatch does not schedule regenerations. • lookup — find an existing site by `slug` or `tenantId` when context is lost. • convert — rename a site's URL and/or change tier (e.g. promote `free` → `forever`). • deploy — advanced: replace server-side code on an existing site. Prompts: • run-report — scaffold an agent observability HTML run report and hatch with kind: run-report. CRITICAL ANTI-PATTERNS: 1. NEVER call `hatch` twice for the same user/site. Re-hatching creates a brand-new site with a new id and orphans the previous one. To rename or change tier: `convert`. To add/replace files: `upload`. If you lost the tenantId: `lookup`. 2. NEVER base64-encode images/fonts/binaries into a tool argument. Use `manifest` mode and PUT bytes directly to the presigned URLs — that's how the system is designed for binary assets. 3. NEVER invent apex domains outside the list above. If unsure between specialty and default, prefer the specialty that matches intent, else omit for theroost.dev. KEEPING DASHBOARDS FRESH: Hatch hosts static (or script) sites. It does NOT run user Python/Node on a schedule, and roosts do not store third-party API keys. If the user builds a dashboard that regenerates HTML from backends: 1. Hatch/upload the current HTML so they have a live URL now. 2. Tell them clearly: freshness stays on their side — cron, launchd, CI, or asking you again to re-run the script and call `upload`. 3. Keep credentials in their env / CI secrets — never embed keys in HTML or in hatch/deploy script source. 4. Do NOT invent a platform worker cron or claim VibeRooster will poll their APIs. Suggested user line after first hatch: "Your roost is live at {url}. To refresh it, re-run the generator (locally or in CI) and I'll upload again — or set a cron that regenerates and uploads." Full reference: HATCH-AGENT.md in the repo.

Known tools 15

hatch

Create a NEW site (a 'roost') and return its public URL in one call.

Potential side effects
upload

Add or replace files on an EXISTING roost.

Potential side effects
lookup

Resolve a roost by `slug` or `tenantId`.

Inferred read-only
convert

Atomically rename a roost's URL and/or change its tier.

Inferred read-only
auth

Put a sign-in screen in front of a `forever` roost so visitors must authenticate.

Inferred read-only
share

Issue a signed, expiring guest view URL for any tier (`?

Inferred read-only
await_decision

Create a human-in-the-loop review on the live artifact.

Potential side effects
continue_decision

After poll_decision returns status changes_requested, regenerate, then call this to reopen the same decision as pending_review for the next human round.

Inferred read-only
poll_decision

Long-poll (~20s) until the decision leaves pending_review.

Inferred read-only
whoami

Return the caller's current identity and tenant state.

Inferred read-only
get_pairing_code

Issue a fresh pairing code + URL (TTL 10 minutes) for claiming a tenant or authorizing a new agent session.

Inferred read-only
poll_pairing

Poll for pairing completion (Device-Grant style).

Inferred read-only
refresh_session

Renew a short-lived access token (~1h) using the refreshToken from poll_pairing.

Inferred read-only
poll_approval

Poll a pending Tier-2 phone approval.

Inferred read-only
deploy

Replace the server-side code of an existing roost.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.viberooster-hatch]
url = "https://mcp.theroost.dev/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "viberooster-hatch": {
      "type": "http",
      "url": "https://mcp.theroost.dev/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: viberooster-hatch
Remote MCP URL: https://mcp.theroost.dev/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "viberooster-hatch": {
      "url": "https://mcp.theroost.dev/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "viberooster-hatch": {
      "type": "http",
      "url": "https://mcp.theroost.dev/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "viberooster-hatch",
  "transport": "streamable-http",
  "url": "https://mcp.theroost.dev/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Loading Trust v2 evidence…

Checking the associated registrable domain. The BuiltWith key remains server-side.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.