gitlab_list_project_hooks
Use this tool to list configured webhooks for a GitLab project. It displays URLs, events, and configuration details, helping you verify integrations and ensure proper setup.
Instructions
List project webhooks Returns: Configured webhooks Use when: Checking integrations Shows: URLs, events, configuration
Example response: [{ "id": 1, "url": "https://example.com/hook", "push_events": true, "issues_events": true, "merge_requests_events": true, "wiki_page_events": false }]
Related tools:
gitlab_create_project_hook: Add webhook
gitlab_test_project_hook: Test webhook
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | No | Project identifier (auto-detected if not provided) Type: integer OR string Format: numeric ID or 'namespace/project' Optional: Yes - auto-detects from current git repository Examples: - 12345 (numeric ID) - 'gitlab-org/gitlab' (namespace/project path) - 'my-group/my-subgroup/my-project' (nested groups) Note: If in a git repo with GitLab remote, this can be omitted |