AtomGit MCP Server

Mulan Permissive Software License, Version 2
0

get_repository_branch_details

Retrieve comprehensive details about a specific branch in a repository, including its metadata, by specifying the owner, repository, and branch name.

Instructions

Get details of a specific branch in a repository

Input Schema

NameRequiredDescriptionDefault
branchYes分支名称,不能包含通配符。
ownerYes代码仓库的所有者,一般称之为'用户名(username)'。该名称不区分大小写。
repoYes代码仓库名称。该名称不区分大小写。

Input Schema (JSON Schema)

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