> ## Documentation Index
> Fetch the complete documentation index at: https://docs.totemlabs.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Dashboard overview

> Manage account settings and inspect published games beside the MCP workflow.

export const StatusBadge = ({state = "available", children}) => {
  const labels = {
    available: "Available",
    "early-access": "Early access",
    planned: "Planned",
    internal: "Internal draft"
  };
  return <span className={`totem-status totem-status--${state}`}>
      {children || labels[state] || state}
    </span>;
};

<StatusBadge state="available" />

The dashboard is Totem's companion surface. Publishing stays inside your AI tool.

## What you can do

* Sign in with GitHub.
* Claim, rename, and reclaim handles.
* Create, list, and revoke API keys.
* See games and statuses.
* Change a game icon.
* See leaderboards and analytics.

Playable version history and development builds with tester feedback stay visible as disabled Coming soon controls.

## What stays in your AI tool

Creating a game build, uploading it, validating it, and publishing it remain MCP-only. The dashboard has no build upload form.

Use [Connect your AI tool](/mcp/setup) for setup.
