# Rows > Rows (https://rows.gg) is an unapologetically simple, multiplayer way to track anything: projects, tasks, reading lists, trips. One shared list per team with live cursors and inline editing. No per-person accounts -- a workspace lives at its own address (yourteam.rows.gg) behind one shared password, and teammates just pick their name. Free to use. Creating a workspace takes about a minute: verify an email, name the board, share the password. ## Pages - [Homepage](https://rows.gg/): what Rows is, how it feels to use - [Create a workspace](https://rows.gg/signup): self-service signup (email code, no credit card) - [Live demo](https://try.rows.gg): a real board in a sandbox -- no signup, resets on reload - [Privacy](https://rows.gg/privacy): what we store and why ## Product shape - A workspace is one shared list ("the board") at .rows.gg. - Rows have: name, owners (from the team roster), description, link, priority (P0/P1/P2), effort, status (Not started, Waiting, In progress, Blocked, Maintenance, Complete, Kill), and an optional due date. - Complete/Kill rows move to an Archive view. Everything is retained until explicitly deleted. - Identity is roster-based, not account-based: the workspace has one shared team password (and an optional view-only guest password). This is a deliberate design decision. ## For AI agents Workspace admins can generate an API token in Settings (Agent access). With it, an agent can work with that board directly: - MCP server: POST https://.rows.gg/api/mcp (Streamable HTTP, stateless). Authorization: Bearer . Tools: list_rows, board_summary, add_row, update_row, complete_row. - REST: GET/POST https://.rows.gg/api/projects and PATCH/DELETE /api/projects/, same Bearer token. - Markdown export: GET https://.rows.gg/api/projects/export returns the whole board as Markdown. Tokens are per-workspace, admin-issued, and revocable. Without one, workspace boards are private and should not be crawled.