getRepository
Retrieve Bitbucket repository details using workspace name and repo slug to manage or analyze repository data via the Bitbucket MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repo_slug | Yes | Repository slug | |
workspace | Yes | Bitbucket workspace name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"repo_slug": {
"description": "Repository slug",
"type": "string"
},
"workspace": {
"description": "Bitbucket workspace name",
"type": "string"
}
},
"required": [
"workspace",
"repo_slug"
],
"type": "object"
}