smithery/sickn33

gitlab-automation

Automate GitLab project management, issues, merge requests, pipelines, branches, and user operations via Rube MCP (Composio). Always search tools first for current schemas.

Installation

$ npx skills add smithery/sickn33 --skill gitlab-automation

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/sickn33 · top by installs.

npx skills add smithery/sickn33

Browse all from smithery/sickn33

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 13,919 B
  • docs SUMMARY.md 197 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

GitLab Automation via Rube MCP

Automate GitLab operations including project management, issue tracking, merge request workflows, CI/CD pipeline monitoring, branch management, and user administration through Composio's GitLab toolkit.

Prerequisites

  • Rube MCP must be connected (RUBESEARCHTOOLS available)
  • Active GitLab connection via RUBEMANAGECONNECTIONS with toolkit gitlab
  • Always call RUBESEARCHTOOLS first to get current tool schemas

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBESEARCHTOOLS responds
  2. Call RUBEMANAGECONNECTIONS with toolkit gitlab
  3. If connection is not ACTIVE, follow the returned auth link to complete GitLab OAuth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Manage Issues

When to use: User wants to create, update, list, or search issues in a GitLab project

Tool sequence:

  1. GITLABGETPROJECTS - Find the target project and get its ID [Prerequisite]
  2. GITLABLISTPROJECT_ISSUES - List and filter issues for a project [Required]
  3. GITLABCREATEPROJECT_ISSUE - Create a new issue [Required for create]
  4. GITLABUPDATEPROJECT_ISSUE - Update an existing issue (title, labels, state, assignees) [Required for update]
  5. GITLABLISTPROJECT_USERS - Find user IDs for assignment [Optional]

Key parameters:

  • id: Project ID (integer) or URL-encoded path (e.g., "my-group/my-project")
  • title: Issue title (required for creation)
  • description: Issue body text (max 1,048,576 characters)
  • labels: Comma-separated label names (e.g., "bug,critical")
  • addlabels / removelabels: Add or remove labels without replacing all
  • state: Filter by "all", "opened", or "closed"
  • state_event: "close" or "reopen" to change issue state
  • assignee_ids: Array of user IDs; use [0] to unassign all
  • issue_iid: Internal issue ID within the project (required for updates)
  • milestone: Filter by milestone title
  • search: Search in title and description
  • scope: "createdbyme", "assignedtome", or "all"
  • page / perpage: Pagination (default perpage: 20)

Pitfalls:

  • id accepts either integer project ID or URL-encoded path; wrong IDs yield 4xx errors
  • issue_iid is the project-internal ID (shown as #42), different from the global issue ID
  • Labels in labels field replace ALL existing labels; use addlabels/removelabels for incremental changes
  • Setting assignee_ids to empty array does NOT unassign; use [0] instead
  • updated_at field requires administrator or project/group owner rights

2. Manage Merge Requests

When to use: User wants to list, filter, or review merge requests in a project

Tool sequence:

  1. GITLABGETPROJECT - Get project details and verify access [Prerequisite]
  2. GITLABGETPROJECTMERGEREQUESTS - List and filter merge requests [Required]
  3. GITLABGETREPOSITORY_BRANCHES - Verify source/target branches [Optional]
  4. GITLABLISTALLPROJECTMEMBERS - Find reviewers/assignees [Optional]

Key parameters:

  • id: Project ID or URL-encoded path
  • state: "opened", "closed", "locked", "merged", or "all"
  • scope: "createdbyme" (default), "assignedtome", or "all"
  • sourcebranch / targetbranch: Filter by branch names
  • authorid / authorusername: Filter by MR author
  • assignee_id: Filter by assignee (use None for unassigned, Any for assigned)
  • reviewerid / reviewerusername: Filter by reviewer
  • labels: Comma-separated label filter
  • search: Search in title and description
  • wip: "yes" for draft MRs, "no" for non-draft
  • orderby: "createdat" (default), "title", "mergedat", "updatedat"
  • view: "simple" for minimal fields
  • iids[]: Filter by specific MR internal IDs

Pitfalls:

  • Default scope is "createdbyme" which limits results; use "all" for complete listings
  • authorid and authorusername are mutually exclusive
  • reviewerid and reviewerusername are mutually exclusive
  • approved filter requires the mrapprovedfilter feature flag (disabled by default)
  • Large MR histories can be noisy; use filters and moderate per_page values

3. Manage Projects and Repositories

When to use: User wants to list projects, create new projects, or manage branches

Tool sequence:

  1. GITLABGETPROJECTS - List all accessible projects with filters [Required]
  2. GITLABGETPROJECT - Get detailed info for a specific project [Optional]
  3. GITLABLISTUSER_PROJECTS - List projects owned by a specific user [Optional]
  4. GITLABCREATEPROJECT - Create a new project [Required for create]
  5. GITLABGETREPOSITORY_BRANCHES - List branches in a project [Required for branch ops]
  6. GITLABCREATEREPOSITORY_BRANCH - Create a new branch [Optional]
  7. GITLABGETREPOSITORY_BRANCH - Get details of a specific branch [Optional]
  8. GITLABLISTREPOSITORY_COMMITS - View commit history [Optional]
  9. GITLABGETPROJECT_LANGUAGES - Get language breakdown [Optional]

Key parameters:

  • name / path: Project name and URL-friendly path (both required for creation)
  • visibility: "private", "internal", or "public"
  • namespace_id: Group or user ID for project placement
  • search: Case-insensitive substring search for projects
  • membership: true to limit to projects user is a member of
  • owned: true to limit to user-owned projects
  • project_id: Project ID for branch operations
  • branch_name: Name for new branch
  • ref: Source branch or commit SHA for new branch creation
  • orderby: "id", "name", "path", "createdat", "updatedat", "starcount", "lastactivityat"

Pitfalls:

  • GITLABGETPROJECTS pagination is required for complete coverage; stopping at first page misses projects
  • Some responses place items under data.details; parse the actual returned list structure
  • Most follow-up calls depend on correct projectid; verify with GITLABGET_PROJECT first
  • Invalid branchname/ref/sha causes client errors; verify branch existence via GITLABGETREPOSITORYBRANCHES first
  • Both name and path are required for GITLABCREATEPROJECT

4. Monitor CI/CD Pipelines

When to use: User wants to check pipeline status, list jobs, or monitor CI/CD runs

Tool sequence:

  1. GITLABGETPROJECT - Verify project access [Prerequisite]
  2. GITLABLISTPROJECT_PIPELINES - List pipelines with filters [Required]
  3. GITLABGETSINGLE_PIPELINE - Get detailed info for a specific pipeline [Optional]
  4. GITLABLISTPIPELINE_JOBS - List jobs within a pipeline [Optional]

Key parameters:

  • id: Project ID or URL-encoded path
  • status: Filter by "created", "waitingforresource", "preparing", "pending", "running", "success", "failed", "canceled", "skipped", "manual", "scheduled"
  • scope: "running", "pending", "finished", "branches", "tags"
  • ref: Branch or tag name
  • sha: Specific commit SHA
  • source: Pipeline source (use "parent_pipeline" for child pipelines)
  • orderby: "id" (default), "status", "ref", "updatedat", "user_id"
  • createdafter / createdbefore: ISO 8601 date filters
  • pipeline_id: Specific pipeline ID for job listing
  • include_retried: true to include retried jobs (default false)

Pitfalls:

  • Large pipeline histories can be noisy; use status, ref, and date filters to narrow results
  • Use moderate per_page values to keep output manageable
  • Pipeline job scope accepts single status string or array of statuses
  • yaml_errors: true returns only pipelines with invalid configurations

5. Manage Users and Members

When to use: User wants to find users, list project members, or check user status

Tool sequence:

  1. GITLABGETUSERS - Search and list GitLab users [Required]
  2. GITLABGETUSER - Get details for a specific user by ID [Optional]
  3. GITLABGETUSERSIDSTATUS - Get user status message and availability [Optional]
  4. GITLABLISTALLPROJECTMEMBERS - List all project members (direct + inherited) [Required for member listing]
  5. GITLABLISTPROJECT_USERS - List project users with search filter [Optional]

Key parameters:

  • search: Search by name, username, or public email
  • username: Get specific user by username
  • active / blocked: Filter by user state
  • id: Project ID for member listing
  • query: Filter members by name, email, or username
  • state: Filter members by "awaiting" or "active" (Premium/Ultimate)
  • user_ids: Filter by specific user IDs

Pitfalls:

  • Many user filters (admins, auditors, externuid, twofactor) are admin-only
  • GITLABLISTALLPROJECTMEMBERS includes direct, inherited, and invited members
  • User search is case-insensitive but may not match partial email domains
  • Premium/Ultimate features (state filter, seat info) are not available on free plans

Common Patterns

ID Resolution

GitLab uses two identifier formats for projects:

  • Numeric ID: Integer project ID (e.g., 123)
  • URL-encoded path: Namespace/project format (e.g., "my-group%2Fmy-project" or "my-group/my-project")
  • Issue IID vs ID: issue_iid is the project-internal number (#42); the global id is different
  • User ID: Numeric; resolve via GITLABGETUSERS with search or username

Pagination

GitLab uses offset-based pagination:

  • Set page (starting at 1) and per_page (1-100, default 20)
  • Continue incrementing page until response returns fewer items than per_page or is empty
  • Total count may be available in response headers (X-Total, X-Total-Pages)
  • Always paginate to completion for accurate results

URL-Encoded Paths

When using project paths as identifiers:

  • Forward slashes must be URL-encoded: my-group/my-project becomes my-group%2Fmy-project
  • Some tools accept unencoded paths; check schema for each tool
  • Prefer numeric IDs when available for reliability

Known Pitfalls

ID Formats

  • Project id field accepts both integer and string (URL-encoded path)
  • Issue issue_iid is project-scoped; do not confuse with global issue ID
  • Pipeline IDs are project-scoped integers
  • User IDs are global integers across the GitLab instance

Rate Limits

  • GitLab has per-user rate limits (typically 300-2000 requests/minute depending on plan)
  • Large pipeline/issue histories should use date and status filters to reduce result sets
  • Paginate responsibly with moderate per_page values

Parameter Quirks

  • labels field replaces ALL labels; use addlabels/removelabels for incremental changes
  • assignee_ids: [0] unassigns all; empty array does nothing
  • scope defaults vary: "createdbyme" for MRs, "all" for issues
  • authorid and authorusername are mutually exclusive in MR filters
  • Date parameters use ISO 8601 format: "2024-01-15T10:30:00Z"

Plan Restrictions

  • Some features require Premium/Ultimate: epicid, weight, iterationid, approvedbyids, member state filter
  • Admin-only features: user management filters, updated_at override, custom attributes
  • The mrapprovedfilter feature flag is disabled by default

Quick Reference

Task Tool Slug Key Params
List projects GITLABGETPROJECTS search, membership, visibility
Get project details GITLABGETPROJECT id
User's projects GITLABLISTUSER_PROJECTS id, search, owned
Create project GITLABCREATEPROJECT name, path, visibility
List issues GITLABLISTPROJECT_ISSUES id, state, labels, search
Create issue GITLABCREATEPROJECT_ISSUE id, title, description, labels
Update issue GITLABUPDATEPROJECT_ISSUE id, issueiid, stateevent
List merge requests GITLABGETPROJECTMERGEREQUESTS id, state, scope, labels
List branches GITLABGETREPOSITORY_BRANCHES project_id, search
Get branch GITLABGETREPOSITORY_BRANCH projectid, branchname
Create branch GITLABCREATEREPOSITORY_BRANCH projectid, branchname, ref
List commits GITLABLISTREPOSITORY_COMMITS project ID, branch ref
Project languages GITLABGETPROJECT_LANGUAGES project ID
List pipelines GITLABLISTPROJECT_PIPELINES id, status, ref
Get pipeline GITLABGETSINGLE_PIPELINE projectid, pipelineid
List pipeline jobs GITLABLISTPIPELINE_JOBS id, pipeline_id, scope
Search users GITLABGETUSERS search, username, active
Get user GITLABGETUSER user ID
User status GITLABGETUSERSIDSTATUS user ID
List project members GITLABLISTALLPROJECTMEMBERS id, query, state
List project users GITLABLISTPROJECT_USERS id, search

When to Use

This skill is applicable to execute the workflow or actions described in the overview.

Example

User request:

Automate GitLab project management, issues, merge requests, pipelines, branches, and user operations via Rube MCP (Composio).

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.