get_repository_branch_details
Fetch specific branch details from a repository by providing the owner, repository name, and branch. Enables efficient management of branch-related data on AtomGit MCP Server.
Instructions
Get details of a specific branch in a repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch | Yes | Branch name, cannot contain wildcards. | |
owner | Yes | Repository owner, typically referred to as 'username'. Case-insensitive. | |
repo | Yes | Repository name. Case-insensitive. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"branch": {
"description": "Branch name, cannot contain wildcards.",
"type": "string"
},
"owner": {
"description": "Repository owner, typically referred to as 'username'. Case-insensitive.",
"type": "string"
},
"repo": {
"description": "Repository name. Case-insensitive.",
"type": "string"
}
},
"required": [
"owner",
"repo",
"branch"
],
"type": "object"
}