Backlog MCP Server

get_issues

Retrieve a filtered list of issues from Backlog projects using criteria like project ID, issue type, status, keyword, dates, and sorting options for efficient task management.

Instructions

Returns list of issues

Input Schema

NameRequiredDescriptionDefault
assigneeIdNoAssignee user IDs
categoryIdNoCategory IDs
countNoNumber of issues to retrieve
createdSinceNoCreated since (yyyy-MM-dd)
createdUntilNoCreated until (yyyy-MM-dd)
createdUserIdNoCreated user IDs
dueDateSinceNoDue date since (yyyy-MM-dd)
dueDateUntilNoDue date until (yyyy-MM-dd)
issueTypeIdNoIssue type IDs
keywordNoKeyword to search for in issues
milestoneIdNoMilestone IDs
offsetNoOffset for pagination
orderNoSort order
parentIssueIdNoParent issue IDs
priorityIdNoPriority IDs
projectIdNoProject IDs
resolutionIdNoResolution IDs
sortNoSort field
startDateSinceNoStart date since (yyyy-MM-dd)
startDateUntilNoStart date until (yyyy-MM-dd)
statusIdNoStatus IDs
updatedSinceNoUpdated since (yyyy-MM-dd)
updatedUntilNoUpdated until (yyyy-MM-dd)
versionIdNoVersion IDs

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assigneeId": { "description": "Assignee user IDs", "items": { "type": "number" }, "type": "array" }, "categoryId": { "description": "Category IDs", "items": { "type": "number" }, "type": "array" }, "count": { "description": "Number of issues to retrieve", "type": "number" }, "createdSince": { "description": "Created since (yyyy-MM-dd)", "type": "string" }, "createdUntil": { "description": "Created until (yyyy-MM-dd)", "type": "string" }, "createdUserId": { "description": "Created user IDs", "items": { "type": "number" }, "type": "array" }, "dueDateSince": { "description": "Due date since (yyyy-MM-dd)", "type": "string" }, "dueDateUntil": { "description": "Due date until (yyyy-MM-dd)", "type": "string" }, "issueTypeId": { "description": "Issue type IDs", "items": { "type": "number" }, "type": "array" }, "keyword": { "description": "Keyword to search for in issues", "type": "string" }, "milestoneId": { "description": "Milestone IDs", "items": { "type": "number" }, "type": "array" }, "offset": { "description": "Offset for pagination", "type": "number" }, "order": { "description": "Sort order", "enum": [ "asc", "desc" ], "type": "string" }, "parentIssueId": { "description": "Parent issue IDs", "items": { "type": "number" }, "type": "array" }, "priorityId": { "description": "Priority IDs", "items": { "type": "number" }, "type": "array" }, "projectId": { "description": "Project IDs", "items": { "type": "number" }, "type": "array" }, "resolutionId": { "description": "Resolution IDs", "items": { "type": "number" }, "type": "array" }, "sort": { "description": "Sort field", "enum": [ "issueType", "category", "version", "milestone", "summary", "status", "priority", "attachment", "sharedFile", "created", "createdUser", "updated", "updatedUser", "assignee", "startDate", "dueDate", "estimatedHours", "actualHours", "childIssue" ], "type": "string" }, "startDateSince": { "description": "Start date since (yyyy-MM-dd)", "type": "string" }, "startDateUntil": { "description": "Start date until (yyyy-MM-dd)", "type": "string" }, "statusId": { "description": "Status IDs", "items": { "type": "number" }, "type": "array" }, "updatedSince": { "description": "Updated since (yyyy-MM-dd)", "type": "string" }, "updatedUntil": { "description": "Updated until (yyyy-MM-dd)", "type": "string" }, "versionId": { "description": "Version IDs", "items": { "type": "number" }, "type": "array" } }, "type": "object" }
ID: lktnbgdbjl