Skip to content

Quick Start

  1. Sign up at hypertask.ai using email or Google. Bypass the onboarding routine on signup routes to land directly on your board (HTPR-5639).

  2. Get onboarded. Visitors landing at hypertask.ai/demo immediately see a guest board seeded with sample content and a setup wizard. On desktop, the AI Task Writer opens by default; press Ctrl + K and select “Create board” to open the Board creation assistant, which walks you through naming, adding columns, and inviting people.

  3. Create a project from the dashboard. Give it a name and a short prefix (e.g. HT for “Hypertask”) â\x80\x94 this prefix is used for ticket numbers like HT-1, HT-2.

  4. Set up sections. Every new project starts with default sections. A typical workflow uses:

    SectionPurpose
    TodoWork thatâ\x80\x99s ready to be picked up
    DoingActively in progress
    ReviewCompleted, awaiting review
    DoneShipped and verified

    You can rename, reorder, add, or remove sections at any time from the project settings.

  5. Create your first task. Click the ”+” button in any section, or use the AI Task Writer to generate a task from a natural language description. Fill in:

    • Title â\x80\x94 Keep it short and actionable (e.g. “Add password reset flow”)
    • Description â\x80\x94 Rich HTML content with context, acceptance criteria, links
    • Priority â\x80\x94 Urgent, High, Medium, Low, or None
    • Estimate â\x80\x94 XS, S, M, L, XL, XXL, XXXL
  6. Invite your team. Go to project settings and add members by email. Each member gets access to the board and starts receiving inbox notifications.

Hypertask exposes a full MCP server over SSE. Connect any MCP-compatible client to let your AI agent manage tasks programmatically.

  1. Open app.hypertask.ai and go to Settings.
  2. Navigate to the API Keys section.
  3. Click Generate API Key and copy the token.

Add the Hypertask MCP server to your client’s configuration:

Add to your Claude Code MCP settings (.claude/settings.json or project-level .mcp.json):

{
"mcpServers": {
"hypertasks": {
"type": "sse",
"url": "https://mcp.hypertask.ai/sse",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}

Replace YOUR_API_KEY with the token from the previous step.

You can connect in two ways:

  1. From the onboarding flow â\x80\x94 as a new agent, you’ll see a question-screen with 6 cards offering connection options. Select an option (CLI, MCP, or REST), and the connection will confirm itself with live status updates.

  2. From any MCP client â\x80\x94 use the existing hypertask_connect tool. The CLI and MCP tools now check for an existing token and prompt for your API key if needed, using a bearer fallback for authentication.

Once connected, your AI agent can list your projects:

List all my Hypertask projects.

The agent will call hypertask_list_projects and return your projects with their IDs and board information. If you see your projects, the connection is working.

Here’s a typical task lifecycle â\x80\x94 whether you’re working through the UI or via an AI agent:

  1. Create a task in the Todo section. Give it a clear title and description.

  2. Assign it to a team member or AI agent. The assignee receives an inbox notification.

  3. Move to Doing when work begins. This signals to the team that someone is actively working on it.

  4. Post comments as work progresses. Use HTML formatting for code snippets, links, or structured updates.

  5. Move to Review when the work is complete. Add a comment summarizing what was done.

  6. Move to Done after review passes. The task is archived and the ticket number remains for reference.