list_namespaces
Retrieve all GitLab namespaces accessible to your user account, with options to search by name, filter by ownership, and paginate results for efficient navigation.
Instructions
List all namespaces available to the current user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| search | No | Search term for namespaces | |
| owned | No | Filter for namespaces owned by current user | |
| page | No | Page number for pagination (default: 1) | |
| per_page | No | Number of items per page (max: 100, default: 20) |
Input Schema (JSON Schema)
{
"properties": {
"owned": {
"description": "Filter for namespaces owned by current user",
"type": "boolean"
},
"page": {
"description": "Page number for pagination (default: 1)",
"type": "number"
},
"per_page": {
"description": "Number of items per page (max: 100, default: 20)",
"type": "number"
},
"search": {
"description": "Search term for namespaces",
"type": "string"
}
},
"type": "object"
}