gitlab_list_projects
ActiveTool of Gitlab
declared in 0.1.0
List all accessible GitLab projects. Returns project ID, name, path, description, star count, and URL. Use gitlab_get_project to fetch detailed info.
Parameters schema
{
"type": "object",
"examples": [
{
"_apiKey": "your-gitlab-api-key"
},
{
"owned": true,
"search": "frontend",
"_apiKey": "your-gitlab-api-key",
"per_page": 50
}
],
"required": [
"_apiKey"
],
"properties": {
"owned": {
"type": "boolean",
"description": "If true, only return projects owned by the user (default: false)"
},
"search": {
"type": "string",
"description": "Search projects by name"
},
"_apiKey": {
"type": "string",
"description": "GitLab personal access token"
},
"per_page": {
"type": "number",
"description": "Number of projects to return (default 20, max 100)"
}
}
}Parent server
Gitlab
https://github.com/pipeworx-io/mcp-gitlab
1/7 registries