search_projects
Find GitLab projects by name to identify repositories for code review, analysis, and merge request management.
Instructions
Search for GitLab projects by name.
Args:
project_name: The name of the project to search for. If None, returns all projects.
Returns:
A list of projects matching the search criteria.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_name | No |
Input Schema (JSON Schema)
{
"properties": {
"project_name": {
"default": null,
"title": "Project Name",
"type": "string"
}
},
"type": "object"
}