Backlog MCP Server

by fleagne
Verified

backlog_add_issue

Add a new issue to a Backlog project by specifying details like project ID, summary, issue type, and priority. Streamlines task creation for efficient project management.

Instructions

Add an issue using the Backlog Issue API.

Input Schema

NameRequiredDescriptionDefault
actualHoursNoActual hours for the issue
assigneeIdNoAssignee id
categoryIdNoCategory id
descriptionNoDescription of the issue
dueDateNoDue date of the issue (YYYY-MM-DD format)
estimatedHoursNoEstimated hours for the issue
issueTypeIdYesIssue type id
milestoneIdNoMilestone id
priorityIdYesPriority id
projectIdYesProject id
startDateNoStart date of the issue (YYYY-MM-DD format)
summaryYesSummary of the issue
versionIdNoVersion id

Input Schema (JSON Schema)

{ "properties": { "actualHours": { "description": "Actual hours for the issue", "type": "number" }, "assigneeId": { "description": "Assignee id", "type": "number" }, "categoryId": { "description": "Category id", "type": "number" }, "description": { "description": "Description of the issue", "type": "string" }, "dueDate": { "description": "Due date of the issue (YYYY-MM-DD format)", "type": "string" }, "estimatedHours": { "description": "Estimated hours for the issue", "type": "number" }, "issueTypeId": { "description": "Issue type id", "type": "number" }, "milestoneId": { "description": "Milestone id", "type": "number" }, "priorityId": { "description": "Priority id", "type": "number" }, "projectId": { "description": "Project id", "type": "number" }, "startDate": { "description": "Start date of the issue (YYYY-MM-DD format)", "type": "string" }, "summary": { "description": "Summary of the issue", "type": "string" }, "versionId": { "description": "Version id", "type": "number" } }, "required": [ "projectId", "summary", "issueTypeId", "priorityId" ], "type": "object" }
ID: ekxpemr97g