gitlab_delete_trigger_token
Remove a pipeline trigger token from a GitLab project by specifying the project ID and trigger ID using the GitLab MCP Server.
Instructions
Delete a pipeline trigger token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The ID or URL-encoded path of the project | |
trigger_id | Yes | The ID of the trigger |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "The ID or URL-encoded path of the project",
"type": "string"
},
"trigger_id": {
"description": "The ID of the trigger",
"type": "number"
}
},
"required": [
"project_id",
"trigger_id"
],
"type": "object"
}