MCP Tools Reference

Detailed parameter documentation for each MCP tool.

create_issue

Create a new issue in the workspace.

ParameterTypeRequiredDescription
titlestringYesIssue title
descriptionstringNoIssue description (plain text or Tiptap JSON)
teamIdstringYesTeam to create the issue in
statusIdstringNoStatus ID (defaults to Backlog)
prioritynumberNoPriority: 0=None, 1=Low, 2=Medium, 3=High, 4=Urgent
assigneeIdstringNoUser ID to assign
labelIdsstring[]NoLabel IDs to attach

update_issue

Update an existing issue.

ParameterTypeRequiredDescription
idstringYesIssue ID or identifier (e.g., ENG-42)
titlestringNoNew title
descriptionstringNoNew description
statusIdstringNoNew status ID
prioritynumberNoNew priority
assigneeIdstringNoNew assignee ID

get_issue

Get full details of a specific issue.

ParameterTypeRequiredDescription
idstringYesIssue ID or identifier

search_issues

Search for issues matching criteria.

ParameterTypeRequiredDescription
querystringNoFull-text search query
statusstring[]NoFilter by status names
prioritynumber[]NoFilter by priority levels
assigneeIdstringNoFilter by assignee
labelIdsstring[]NoFilter by labels
limitnumberNoMax results (default 25, max 100)

list_issues

List issues with pagination.

ParameterTypeRequiredDescription
teamIdstringNoFilter by team
cursorstringNoPagination cursor
limitnumberNoPage size (default 25)

delete_issue

Delete an issue permanently.

ParameterTypeRequiredDescription
idstringYesIssue ID or identifier

create_comment

Add a comment to an issue.

ParameterTypeRequiredDescription
issueIdstringYesIssue ID to comment on
bodystringYesComment text

list_projects

List all projects in the workspace.

No parameters required. Returns all projects with their status, progress, and milestone count.

create_project

Create a new project.

ParameterTypeRequiredDescription
namestringYesProject name
descriptionstringNoProject description
teamIdsstring[]NoTeams to associate

list_teams, list_labels, list_statuses, list_members

These tools list workspace metadata. They take no parameters and return arrays of the respective entities with their IDs and names. Use these to resolve IDs before calling other tools.

get_workspace

Returns workspace information including name, slug, member count, and plan tier. No parameters required.