AtomGit MCP Server

Mulan Permissive Software License, Version 2
0

create_issue_labels

Adds custom labels to issues in an AtomGit repository to improve organization and tracking. Requires owner, repository name, issue number, and label list.

Instructions

Add labels to an issue in a repository

Input Schema

NameRequiredDescriptionDefault
issue_numberYesissue编号
labelsYes标签名称数组
ownerYes代码仓库的所有者,一般称之为'用户名(username)'。该名称不区分大小写。
repoYes代码仓库名称(该名称不区分大小写)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "issue_number": { "description": "issue编号", "type": "number" }, "labels": { "description": "标签名称数组", "items": { "type": "string" }, "type": "array" }, "owner": { "description": "代码仓库的所有者,一般称之为'用户名(username)'。该名称不区分大小写。", "type": "string" }, "repo": { "description": "代码仓库名称(该名称不区分大小写)", "type": "string" } }, "required": [ "owner", "repo", "issue_number", "labels" ], "type": "object" }
ID: oymm0hus7s