MCP

The Tracker Boot MCP server implements the Model Context Protocol (MCP), letting AI assistants like Claude fetch stories, manage tasks, and read iteration analytics directly from your project, without leaving their workspace.

How it works

Every supported client connects to one hosted endpoint: https://trackerboot.com/mcp. Interactive clients open Tracker Boot in your browser so you can sign in. Headless clients send a project-restricted API key instead.

1 Your AI client Choose a supported client below
2 trackerboot.com/mcp One hosted MCP endpoint
3 Your projects Access follows your account

Before you connect

You need:

  1. A Tracker Boot account.
  2. One of the clients covered in the MCP Setup Guide.

That is all. Follow the sign-in step for your client after you add the server.

Available tools

Once connected, your AI client can call these operations against your projects:

ToolDescriptionParametersReturns
tb_get_storyFetch story detailsstoryIdComplete story details
tb_get_story_tasksFetch tasks in a storystoryIdList of tasks (title, finished) in a story
tb_get_story_commentsFetch comments in a storystoryIdList of comments (content) in a story
tb_get_current_iterationFetch current iteration with storiesprojectIdIteration data with list of stories including cycle time details
tb_create_storyCreate a new storyprojectId, title, description (optional), storyType (optional)Details of the created story
tb_update_story_titleUpdate the title of a storystoryId, titleDetails of the updated story
tb_update_story_descriptionUpdate the description of a storystoryId, descriptionDetails of the updated story
tb_update_story_statusUpdate the status of a storystoryId, statusDetails of the updated story
tb_create_taskCreate a new task in a storystoryId, titleDetails of the created task
tb_batch_create_tasksCreate multiple tasks in a storystoryId, titlesDetails of the created tasks
tb_update_taskUpdate a task in a storytaskId, storyId, finished, title (optional)Details of the updated task
tb_create_commentCreate a new comment in a storystoryId, contentDetails of the created comment
tb_get_projectsGet the list of projectsList of projects that the user has access to
tb_search_storiesSearch stories by keyword, labels, and statusprojectId, query (optional), labels (optional), status (optional)List of stories matching the search criteria
tb_update_story_estimateUpdate the estimate of a storystoryId, estimateDetails of the updated story
tb_get_project_membersGet the list of project membersprojectIdList of members of a project
tb_update_story_ownersAssign or remove owners from a storystoryId, addOwnerIds, removeOwnerIdsDetails of the updated story
tb_add_story_labelAdd a label to a storystoryId, labelLabel id, name, and count
tb_remove_story_labelRemove an existing label from a storystoryId, labelLabel id, name, and count

Next steps

  • MCP Setup Guide: Step-by-step setup for Claude Code, Codex, Cursor, VS Code, Claude.ai, ChatGPT, and GitHub Copilot, plus a self-managed Docker alternative.