GitLab Kanban MCP Server

create_task

カンバンボードに新しいタスクを作成

Input Schema

NameRequiredDescriptionDefault
descriptionNoタスクの説明
labelsNoタスクのラベル
projectIdYesGitLabプロジェクトID
titleYesタスクのタイトル

Input Schema (JSON Schema)

{ "properties": { "description": { "description": "タスクの説明", "type": "string" }, "labels": { "description": "タスクのラベル", "items": { "type": "string" }, "type": "array" }, "projectId": { "description": "GitLabプロジェクトID", "type": "string" }, "title": { "description": "タスクのタイトル", "type": "string" } }, "required": [ "projectId", "title" ], "type": "object" }