Redmine MCP Server

create_issue

Create a new issue

Input Schema

NameRequiredDescriptionDefault
assigned_to_idNoAssignee user ID
category_idNoCategory ID
custom_fieldsNoCustom field values
descriptionNoIssue description
due_dateNoDue date (YYYY-MM-DD)
estimated_hoursNoEstimated hours
fixed_version_idNoTarget version ID
is_privateNoWhether the issue is private
parent_issue_idNoParent issue ID
priority_idNoPriority ID
project_idYesProject ID
start_dateNoStart date (YYYY-MM-DD)
status_idNoStatus ID
subjectYesIssue subject
tracker_idNoTracker ID
watcher_user_idsNoUser IDs to add as watchers

Input Schema (JSON Schema)

{ "properties": { "assigned_to_id": { "description": "Assignee user ID", "type": "number" }, "category_id": { "description": "Category ID", "type": "number" }, "custom_fields": { "description": "Custom field values", "items": { "properties": { "id": { "description": "Custom field ID", "type": "number" }, "value": { "description": "Custom field value(s)", "items": { "type": "string" }, "type": [ "string", "array" ] } }, "required": [ "id", "value" ], "type": "object" }, "type": "array" }, "description": { "description": "Issue description", "type": "string" }, "due_date": { "description": "Due date (YYYY-MM-DD)", "pattern": "^\\d{4}-\\d{2}-\\d{2}$", "type": "string" }, "estimated_hours": { "description": "Estimated hours", "type": "number" }, "fixed_version_id": { "description": "Target version ID", "type": "number" }, "is_private": { "description": "Whether the issue is private", "type": "boolean" }, "parent_issue_id": { "description": "Parent issue ID", "type": "number" }, "priority_id": { "description": "Priority ID", "type": "number" }, "project_id": { "description": "Project ID", "type": "number" }, "start_date": { "description": "Start date (YYYY-MM-DD)", "pattern": "^\\d{4}-\\d{2}-\\d{2}$", "type": "string" }, "status_id": { "description": "Status ID", "type": "number" }, "subject": { "description": "Issue subject", "type": "string" }, "tracker_id": { "description": "Tracker ID", "type": "number" }, "watcher_user_ids": { "description": "User IDs to add as watchers", "items": { "type": "number" }, "type": "array" } }, "required": [ "project_id", "subject" ], "type": "object" }