Skip to content

Releases: kqns91/GitLab-MCP

v0.4.0

24 Mar 06:08

Choose a tag to compare

What's New

Issue ツール(新規11個)

  • list_issues - Issue 一覧取得(state, labels, assignee, author, search フィルタ)
  • get_issue - Issue 詳細取得
  • create_issue - Issue 作成
  • update_issue - Issue 更新
  • delete_issue - Issue 削除
  • list_issue_notes - Issue コメント一覧
  • create_issue_note - Issue コメント追加
  • delete_issue_note - Issue コメント削除
  • list_issue_discussions - Issue ディスカッション一覧
  • create_issue_discussion - Issue ディスカッション作成
  • reply_to_issue_discussion - Issue ディスカッション返信

Pipeline ツール(新規8個)

  • list_project_pipelines - プロジェクトのパイプライン一覧
  • get_pipeline - パイプライン詳細
  • create_pipeline - パイプライン作成
  • retry_pipeline - パイプラインリトライ
  • cancel_pipeline - パイプラインキャンセル
  • get_pipeline_job - ジョブ詳細
  • get_job_log - ジョブログ取得(最大100KB)
  • retry_pipeline_job - ジョブリトライ

Full Changelog: v0.3.0...v0.4.0

v0.3.0

15 Jan 13:47
d102edb

Choose a tag to compare

New Features

  • reply_to_merge_request_comment: Reply to existing discussions on merge requests
  • delete_merge_request_comment: Delete comments from merge requests

Changes

  • Add AddMergeRequestDiscussionNote method to GitLab client
  • Update README with new discussion tools

v0.2.2

08 Jan 19:26

Choose a tag to compare

What's New

New Feature

  • delete_merge_request_comment tool: Delete comments (notes) from merge requests
    • Input: project_id, merge_request_iid, note_id
    • Proper error handling for 404 (not found) and 403 (forbidden) cases

Installation

go install github.com/kqns91/gitlab-mcp/cmd/gitlab-mcp@v0.2.2

v0.2.1

08 Jan 19:06

Choose a tag to compare

What's Changed

New Features

  • Add pagination support (page, per_page parameters) to list APIs:
    • list_merge_requests
    • list_merge_request_discussions
    • get_merge_request_changes
    • get_pipeline_jobs

This allows AI agents to handle large result sets by fetching pages incrementally instead of being limited to 100 items.

Full Changelog: v0.2.0...v0.2.1

v0.2.0

08 Jan 18:30

Choose a tag to compare

What's New

  • Add -v / --version flag to display version
  • Automatically shows version when installed via go install

Installation

go install github.com/kqns91/gitlab-mcp/cmd/gitlab-mcp@v0.2.0
gitlab-mcp -v
# gitlab-mcp v0.2.0

v0.1.0 - Initial Release

08 Jan 18:25

Choose a tag to compare

Features

  • 15 MCP tools for GitLab Merge Request operations
  • MR lifecycle management (list, get, create, update, merge)
  • Code review support (comments, discussions, approvals)
  • CI/CD integration (pipelines, jobs)
  • Flexible tool filtering via environment variables
  • Full documentation in English and Japanese

Installation

go install github.com/kqns91/gitlab-mcp/cmd/gitlab-mcp@v0.1.0

See README for configuration details.