Skip to content

Quick Start

  1. Sign up at hypertask.ai and create your account.

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

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

    SectionPurpose
    TodoWork that’s 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.

  4. 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 — Keep it short and actionable (e.g., “Add password reset flow”)
    • Description — Rich HTML content with context, acceptance criteria, links
    • Priority — Urgent, High, Medium, Low, or None
    • Estimate — XS, S, M, L, XL, XXL, XXXL
  5. 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.

Once connected, ask your AI agent to 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 — 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.