Set up a project

Create a project with a key, configure your workflow, and start tracking work with tickets and cycles.

  1. 1 Navigate to your workspace

    Open your workspace at your-workspace.getkera.eu. You need to be a workspace member to create projects.

  2. 2 Create a project

    Give it a name and a short key. The key is an uppercase identifier (e.g. KERA, DOCS, PROJ) used to prefix ticket IDs.

    For example, a project with key KERA will have tickets KERA-1, KERA-2, and so on.

  3. 3 Set up a workflow

    Every project has a default workflow with four statuses:

    open in_progress in_review done

    You can customize these to match your team's process.

  4. 4 Create your first ticket

    Add a ticket with a title, type (task, bug, story, epic), and optional description. Assign it to a team member and set a priority.

  5. 5 Set up cycles

    Optionally, create cycles (sprints) with start and end dates to group tickets into time-boxed iterations.

Via MCP

You can do all of this through your AI agent using MCP tool calls:

// Create a project create_project: { "workspace_id": "...", "name": "My Project", "key": "PROJ" } // Create a ticket create_ticket: { "workspace_id": "...", "project_id": "...", "title": "First ticket", "type": "task" } // Create a cycle create_cycle: { "workspace_id": "...", "project_id": "...", "name": "Sprint 1", "start_date": "2026-01-06", "end_date": "2026-01-20" }

Next steps