list_repositories
Find and filter repositories in your Bitbucket workspace using project keys, name searches, or advanced queries to manage codebases efficiently.
Instructions
List and search repositories in the workspace.
Args:
project_key: Filter by project key (optional)
search: Simple search term for repository name (optional)
Uses fuzzy matching: search="anzsic" finds "anzsic_classifier"
query: Advanced Bitbucket query syntax (optional)
Examples:
- name ~ "api" (partial name match)
- description ~ "classifier" (search description)
- is_private = false (public repos only)
- name ~ "test" AND is_private = true
limit: Maximum number of results (default: 50, max: 100)
Returns:
List of repositories with basic infoInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_key | No | ||
| search | No | ||
| query | No | ||
| limit | No |