AtomGit MCP Server

Mulan Permissive Software License, Version 2
0

get_label_by_name

Retrieve a specific label by its name from a repository on AtomGit, using the owner, repository, and label name as inputs.

Instructions

Get a single label by name from a repository

Input Schema

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

Input Schema (JSON Schema)

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