search_gitlab
Query and retrieve GitLab projects and repositories with customizable search parameters through the Open Search MCP server, streamlining repository discovery.
Instructions
Search GitLab projects and repositories
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxResults | No | Maximum number of results to return | |
query | Yes | Search query for GitLab repositories |
Input Schema (JSON Schema)
{
"properties": {
"maxResults": {
"default": 20,
"description": "Maximum number of results to return",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query for GitLab repositories",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}