get_project_events
Retrieve recent events and activities for a GitLab project using specified filters like date range, page number, and sorting order. Access project-specific updates efficiently via the MCP server.
Instructions
Get recent events/activities for a GitLab project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | No | ||
after | No | ||
before | No | ||
page | No | ||
per_page | No | ||
project_id | No | ||
sort | No | ||
target_type | No |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"type": "string"
},
"after": {
"type": "string"
},
"before": {
"type": "string"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"project_id": {
"type": "string"
},
"sort": {
"enum": [
"asc",
"desc"
],
"type": "string"
},
"target_type": {
"type": "string"
}
},
"type": "object"
}