Backlog MCP Server

add_issue

Create and manage new issues in Backlog projects by specifying project ID, issue type, priority, and summary. Add details like description, dates, assignees, and custom fields for efficient issue tracking.

Instructions

Creates a new issue in the specified project.

Input Schema

NameRequiredDescriptionDefault
actualHoursNoActual work hours
assigneeIdNoUser ID of the assignee
attachmentIdNoAttachment IDs
categoryIdNoCategory IDs
customFieldIdNoCustom field IDs
customFieldValueNoValues for custom fields
descriptionNoCreates a new issue in the specified project.
dueDateNoScheduled due date (yyyy-MM-dd)
estimatedHoursNoEstimated work hours
issueTypeIdYesIssue type ID
milestoneIdNoMilestone IDs
notifiedUserIdNoUser IDs to notify
parentIssueIdNoParent issue ID
priorityIdYesPriority ID
projectIdYesProject ID
startDateNoScheduled start date (yyyy-MM-dd)
summaryYesSummary of the issue
versionIdNoVersion IDs

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "actualHours": { "description": "Actual work hours", "type": "number" }, "assigneeId": { "description": "User ID of the assignee", "type": "number" }, "attachmentId": { "description": "Attachment IDs", "items": { "type": "number" }, "type": "array" }, "categoryId": { "description": "Category IDs", "items": { "type": "number" }, "type": "array" }, "customFieldId": { "description": "Custom field IDs", "items": { "type": "number" }, "type": "array" }, "customFieldValue": { "description": "Values for custom fields", "items": { "type": "string" }, "type": "array" }, "description": { "description": "Creates a new issue in the specified project.", "type": "string" }, "dueDate": { "description": "Scheduled due date (yyyy-MM-dd)", "type": "string" }, "estimatedHours": { "description": "Estimated work hours", "type": "number" }, "issueTypeId": { "description": "Issue type ID", "type": "number" }, "milestoneId": { "description": "Milestone IDs", "items": { "type": "number" }, "type": "array" }, "notifiedUserId": { "description": "User IDs to notify", "items": { "type": "number" }, "type": "array" }, "parentIssueId": { "description": "Parent issue ID", "type": "number" }, "priorityId": { "description": "Priority ID", "type": "number" }, "projectId": { "description": "Project ID", "type": "number" }, "startDate": { "description": "Scheduled start date (yyyy-MM-dd)", "type": "string" }, "summary": { "description": "Summary of the issue", "type": "string" }, "versionId": { "description": "Version IDs", "items": { "type": "number" }, "type": "array" } }, "required": [ "projectId", "summary", "issueTypeId", "priorityId" ], "type": "object" }
ID: lktnbgdbjl