get_project
Retrieve detailed information about a GitLab project using its ID or path to access project data, configurations, and metadata.
Instructions
Get details of a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | Project ID or path (e.g., "1" or "group/project") |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "Project ID or path (e.g., \"1\" or \"group/project\")",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}