gitlab_project_info
Retrieve essential GitLab project metadata including ID, default branch, visibility status, and counts to understand repository configuration and access settings.
Instructions
Return basic metadata about a project: ID, default branch, visibility, counts.
Examples:
- "What's the project ID and default branch" → default call
- "Is this repo public or private" → look at visibility
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | No | GitLab project path (e.g. 'my-org/my-repo'). When omitted, the default from GITLAB_PROJECT_PATH env var is used. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| name | Yes | ||
| path_with_namespace | Yes | ||
| default_branch | Yes | ||
| web_url | Yes | ||
| visibility | Yes | ||
| created_at | Yes | ||
| last_activity_at | Yes | ||
| open_issues_count | Yes | ||
| forks_count | Yes | ||
| star_count | Yes |