bb_delete_repository
Removes a specified repository from Bitbucket by providing the repository slug and optional workspace. Simplifies repository management within the MCP Bitbucket Python server.
Instructions
Delete a repository from Bitbucket
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repo_slug | Yes | The repository slug to delete | |
workspace | No | Target workspace (defaults to kallows, can use ~ for personal workspace) | kallows |
Input Schema (JSON Schema)
{
"properties": {
"repo_slug": {
"description": "The repository slug to delete",
"type": "string"
},
"workspace": {
"default": "kallows",
"description": "Target workspace (defaults to kallows, can use ~ for personal workspace)",
"type": "string"
}
},
"required": [
"repo_slug"
],
"type": "object"
}