Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
BITBUCKET_USERNAME | Yes | Your Bitbucket username | |
BITBUCKET_APP_PASSWORD | Yes | Your Bitbucket app password with appropriate permissions |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
bb_create_repository | Create a new repository in Bitbucket |
bb_create_branch | Create a new branch in a Bitbucket repository |
bb_delete_repository | Delete a repository from Bitbucket |
bb_read_file | Read a file from a Bitbucket repository |
bb_write_file | Write/update a file in a Bitbucket repository |
bb_create_issue | Create an issue in a Bitbucket repository |
bb_delete_issue | Delete an issue from a Bitbucket repository |
bb_search_repositories | Search repositories in Bitbucket using Bitbucket's query syntax. Search by name (name ~ "pattern"), project key (project.key = "PROJ"), language (language = "python"), or dates (updated_on >= "2024-01-19"). NOTE: All dates must be in ISO 8601 format (YYYY-MM-DD). For searching files within repositories, use Bitbucket's code search in the web interface. |
bb_delete_file | Delete a file from a Bitbucket repository |
bb_create_pull_request | Create a new pull request in a Bitbucket repository |