gitlab_list_issues
ActiveTool of Gitlab
declared in 0.1.0
Search issues in a GitLab project by project ID. Returns issue ID, title, state (open/closed), labels, assignee, and URL. Filter by status and labels.
Parameters schema
{
"type": "object",
"examples": [
{
"_apiKey": "your-gitlab-api-key",
"project_id": "123"
},
{
"state": "closed",
"search": "bug",
"_apiKey": "your-gitlab-api-key",
"per_page": 30,
"project_id": "123"
}
],
"required": [
"_apiKey",
"project_id"
],
"properties": {
"state": {
"type": "string",
"description": "Filter by state: \"opened\", \"closed\", or \"all\" (default: \"opened\")"
},
"search": {
"type": "string",
"description": "Search issues by title or description"
},
"_apiKey": {
"type": "string",
"description": "GitLab personal access token"
},
"per_page": {
"type": "number",
"description": "Number of issues to return (default 20, max 100)"
},
"project_id": {
"type": "string",
"description": "Project ID or URL-encoded path"
}
}
}Parent server
Gitlab
https://github.com/pipeworx-io/mcp-gitlab
1/7 registries