get_repository_details
Retrieve repository details and latest commit information from Bitbucket Cloud to access project metadata and development status.
Instructions
Get detailed information about a specific repository including latest commit info
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repository_name | Yes | Name of the repository (repo slug) |
Input Schema (JSON Schema)
{
"properties": {
"repository_name": {
"description": "Name of the repository (repo slug)",
"type": "string"
}
},
"required": [
"repository_name"
],
"type": "object"
}