get_project
Retrieve detailed information about a specific GitLab project by providing its ID or URL-encoded path to access project configuration, settings, and metadata.
Instructions
Get details of a specific project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or URL-encoded path |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "Project ID or URL-encoded path",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}