AtomGit MCP Server

Mulan Permissive Software License, Version 2
0

list_repository_branches

Retrieve and manage branch details in a repository by specifying the owner, repository name, and pagination parameters. Simplify repository navigation and branch tracking.

Instructions

List branches in a repository

Input Schema

NameRequiredDescriptionDefault
ownerYes代码仓库的所有者,一般称之为'用户名(username)'。该名称不区分大小写。
pageNo分页页码
per_pageNo分页结果数
repoYes代码仓库名称。该名称不区分大小写。

Input Schema (JSON Schema)

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