AtomGit MCP Server

Mulan Permissive Software License, Version 2
0

create_repository_label

Create custom labels in a repository on AtomGit using specified name, color, and description to manage and organize issues, pull requests, and other tasks efficiently.

Instructions

Create a new label in a repository

Input Schema

NameRequiredDescriptionDefault
colorYes标签颜色。为6位的字符串,如: #ED4014
descriptionNo标签描述
nameYes标签名称
ownerYes代码仓库的所有者,一般称之为'用户名(username)'。该名称不区分大小写。
repoYes代码仓库名称(该名称不区分大小写)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "color": { "description": "标签颜色。为6位的字符串,如: #ED4014", "type": "string" }, "description": { "description": "标签描述", "type": "string" }, "name": { "description": "标签名称", "type": "string" }, "owner": { "description": "代码仓库的所有者,一般称之为'用户名(username)'。该名称不区分大小写。", "type": "string" }, "repo": { "description": "代码仓库名称(该名称不区分大小写)", "type": "string" } }, "required": [ "owner", "repo", "name", "color" ], "type": "object" }
ID: oymm0hus7s