Developer docs

GitLab integration

A web-based DevOps lifecycle tool that provides a Git repository manager…

Updated June 2026 58 actions available

Provider
gitlab
Category
Other
Setup
One-click OAuth (we host the OAuth app)
Actions
58 available

Quick start

Call GitLab from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to GitLab's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "GITLAB_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

OverSkill hosts the OAuth application for GitLab. End-users click Connect on the integration card in your app, complete the OAuth flow with GitLab, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.

Supported auth schemes: OAUTH2.

Available actions

58 actions exposed via the GitLab integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 58 actions
  • GITLAB_GET_GROUPS
  • GITLAB_GET_JOB_DETAILS
  • GITLAB_GET_MERGE_REQUEST_NOTES
  • GITLAB_GET_PROJECT
  • GITLAB_GET_PROJECT_LANGUAGES
  • GITLAB_GET_PROJECT_MEMBER
  • GITLAB_GET_PROJECT_MEMBER_ALL
  • GITLAB_GET_PROJECT_MERGE_REQUEST
  • GITLAB_GET_PROJECT_MERGE_REQUEST_COMMITS
  • GITLAB_GET_PROJECT_MERGE_REQUESTS
  • GITLAB_GET_PROJECTS
  • GITLAB_GET_PROJECTS_ID_MERGE_REQUESTS_IID_DIFFS
  • GITLAB_GET_REPOSITORY_BRANCH
  • GITLAB_GET_REPOSITORY_BRANCHES
  • GITLAB_GET_SINGLE_COMMIT
  • GITLAB_GET_SINGLE_PIPELINE
  • GITLAB_GET_USER
  • GITLAB_GET_USER_PREFERENCES
  • GITLAB_GET_USERS
  • GITLAB_GET_USERS_ID_STATUS
  • GITLAB_GET_USER_STATUS
  • GITLAB_GET_USER_SUPPORT_PIN
  • GITLAB_IMPORT_PROJECT_MEMBERS
  • GITLAB_LIST_ALL_GROUP_MEMBERS
  • GITLAB_LIST_ALL_PROJECT_MEMBERS
  • GITLAB_LIST_BILLABLE_GROUP_MEMBERS
  • GITLAB_LIST_GROUP_MEMBERS
  • GITLAB_LIST_GROUP_PROJECTS
  • GITLAB_LIST_PENDING_GROUP_MEMBERS
  • GITLAB_LIST_PIPELINE_JOBS
  • GITLAB_LIST_PROJECT_GROUPS
  • GITLAB_LIST_PROJECT_INVITED_GROUPS
  • GITLAB_LIST_PROJECT_ISSUES
  • GITLAB_LIST_PROJECT_PIPELINES
  • GITLAB_LIST_PROJECT_SHAREABLE_GROUPS
  • GITLAB_LIST_PROJECT_TAGS
  • GITLAB_LIST_PROJECT_TRANSFER_LOCATIONS
  • GITLAB_LIST_PROJECT_USERS
  • GITLAB_LIST_REPOSITORY_COMMITS
  • GITLAB_LIST_USER_PROJECTS
  • GITLAB_POST_USER_SUPPORT_PIN
  • GITLAB_PUT_USER_PREFERENCES
  • GITLAB_SET_USER_STATUS
  • GITLAB_SHARE_PROJECT_WITH_GROUP
  • GITLAB_START_PROJECT_HOUSEKEEPING
  • GITLAB_UPDATE_PROJECT_ISSUE

Build with GitLab

Open OverSkill, describe what you want to build, and reference GitLab in your prompt — the AI will wire up the integration automatically.