@structured-world/gitlab-mcp 6.13.0 → 6.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/profiles/builtin/ci.yaml +30 -0
- package/dist/src/profiles/builtin/devops.yaml +28 -0
- package/dist/src/profiles/builtin/gitlab-com.yaml +35 -0
- package/dist/src/profiles/builtin/junior-dev.yaml +30 -0
- package/dist/src/profiles/builtin/pm.yaml +31 -0
- package/dist/src/profiles/builtin/senior-dev.yaml +36 -0
- package/dist/src/profiles/builtin/team-lead.yaml +37 -0
- package/dist/{structured-world-gitlab-mcp-6.13.0.tgz → structured-world-gitlab-mcp-6.14.0.tgz} +0 -0
- package/package.json +1 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# CI/CD Bot preset - automation
|
|
2
|
+
#
|
|
3
|
+
# Minimal tools for CI/CD automation:
|
|
4
|
+
# - Pipeline operations
|
|
5
|
+
# - File management
|
|
6
|
+
# - Variables access
|
|
7
|
+
#
|
|
8
|
+
# No access to development workflow tools.
|
|
9
|
+
#
|
|
10
|
+
# NOTE: This is a PRESET - host/auth come from environment variables.
|
|
11
|
+
|
|
12
|
+
description: "CI/CD Bot - minimal tools for automation"
|
|
13
|
+
|
|
14
|
+
read_only: false
|
|
15
|
+
|
|
16
|
+
features:
|
|
17
|
+
wiki: false
|
|
18
|
+
milestones: false
|
|
19
|
+
pipelines: true
|
|
20
|
+
labels: false
|
|
21
|
+
mrs: false
|
|
22
|
+
files: true
|
|
23
|
+
variables: true
|
|
24
|
+
workitems: false
|
|
25
|
+
webhooks: false
|
|
26
|
+
snippets: false
|
|
27
|
+
integrations: false
|
|
28
|
+
|
|
29
|
+
# Block workflow-related operations
|
|
30
|
+
denied_tools_regex: "^manage_(work_item|mr|label|milestone|wiki)"
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# DevOps Engineer preset - CI/CD and infrastructure
|
|
2
|
+
#
|
|
3
|
+
# Focused on infrastructure and automation:
|
|
4
|
+
# - Full pipeline management
|
|
5
|
+
# - Variables and secrets
|
|
6
|
+
# - Webhooks and integrations
|
|
7
|
+
# - File operations for configs
|
|
8
|
+
#
|
|
9
|
+
# No access to development workflow tools (MRs, issues, wiki).
|
|
10
|
+
#
|
|
11
|
+
# NOTE: This is a PRESET - host/auth come from environment variables.
|
|
12
|
+
|
|
13
|
+
description: "DevOps Engineer - CI/CD pipelines, variables, infrastructure"
|
|
14
|
+
|
|
15
|
+
read_only: false
|
|
16
|
+
|
|
17
|
+
features:
|
|
18
|
+
wiki: false
|
|
19
|
+
milestones: false
|
|
20
|
+
pipelines: true
|
|
21
|
+
labels: false
|
|
22
|
+
mrs: false
|
|
23
|
+
files: true
|
|
24
|
+
variables: true
|
|
25
|
+
workitems: false
|
|
26
|
+
webhooks: true
|
|
27
|
+
snippets: false
|
|
28
|
+
integrations: true
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# gitlab.com preset - rate-limit friendly
|
|
2
|
+
#
|
|
3
|
+
# Optimized for gitlab.com public instance:
|
|
4
|
+
# - Standard development features enabled
|
|
5
|
+
# - Rate-limit friendly restrictions
|
|
6
|
+
# - Safe defaults for public projects
|
|
7
|
+
#
|
|
8
|
+
# Features that typically require elevated access are disabled.
|
|
9
|
+
#
|
|
10
|
+
# NOTE: This is a PRESET - host/auth come from environment variables.
|
|
11
|
+
|
|
12
|
+
description: "Optimized for gitlab.com - respects rate limits, safe defaults"
|
|
13
|
+
|
|
14
|
+
read_only: false
|
|
15
|
+
|
|
16
|
+
features:
|
|
17
|
+
wiki: true
|
|
18
|
+
milestones: true
|
|
19
|
+
pipelines: true
|
|
20
|
+
labels: true
|
|
21
|
+
mrs: true
|
|
22
|
+
files: true
|
|
23
|
+
variables: false # Often restricted on public projects
|
|
24
|
+
workitems: true
|
|
25
|
+
webhooks: false # Requires maintainer+ access
|
|
26
|
+
snippets: true
|
|
27
|
+
integrations: false # Requires admin access
|
|
28
|
+
|
|
29
|
+
# Rate-limit friendly restrictions
|
|
30
|
+
denied_actions:
|
|
31
|
+
# Pagination-heavy operations
|
|
32
|
+
- "browse_commits:list"
|
|
33
|
+
- "browse_pipelines:list"
|
|
34
|
+
# Operations that can trigger many API calls
|
|
35
|
+
- "manage_pipeline:retry"
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Junior Developer preset - day-to-day development
|
|
2
|
+
#
|
|
3
|
+
# Focused on core development tasks:
|
|
4
|
+
# - Code browsing and file management
|
|
5
|
+
# - Work items and merge requests
|
|
6
|
+
# - Labels and snippets
|
|
7
|
+
#
|
|
8
|
+
# No access to pipelines, variables, or admin features.
|
|
9
|
+
#
|
|
10
|
+
# NOTE: This is a PRESET - host/auth come from environment variables.
|
|
11
|
+
|
|
12
|
+
description: "Junior Developer - code, MRs, basic issue tracking"
|
|
13
|
+
|
|
14
|
+
read_only: false
|
|
15
|
+
|
|
16
|
+
features:
|
|
17
|
+
wiki: false
|
|
18
|
+
milestones: false
|
|
19
|
+
pipelines: false
|
|
20
|
+
labels: true
|
|
21
|
+
mrs: true
|
|
22
|
+
files: true
|
|
23
|
+
variables: false
|
|
24
|
+
workitems: true
|
|
25
|
+
webhooks: false
|
|
26
|
+
snippets: true
|
|
27
|
+
integrations: false
|
|
28
|
+
|
|
29
|
+
# Block pipeline and admin operations
|
|
30
|
+
denied_tools_regex: "^manage_(pipeline|variable|webhook)"
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Project Manager preset - planning and tracking
|
|
2
|
+
#
|
|
3
|
+
# Focused on project management:
|
|
4
|
+
# - Work items and milestones
|
|
5
|
+
# - Merge request status tracking
|
|
6
|
+
# - Wiki and documentation
|
|
7
|
+
# - Labels for organization
|
|
8
|
+
#
|
|
9
|
+
# No access to code operations, pipelines, or technical features.
|
|
10
|
+
#
|
|
11
|
+
# NOTE: This is a PRESET - host/auth come from environment variables.
|
|
12
|
+
|
|
13
|
+
description: "Project Manager - planning, tracking, documentation (no code ops)"
|
|
14
|
+
|
|
15
|
+
read_only: false
|
|
16
|
+
|
|
17
|
+
features:
|
|
18
|
+
wiki: true
|
|
19
|
+
milestones: true
|
|
20
|
+
pipelines: false
|
|
21
|
+
labels: true
|
|
22
|
+
mrs: true
|
|
23
|
+
files: false
|
|
24
|
+
variables: false
|
|
25
|
+
workitems: true
|
|
26
|
+
webhooks: false
|
|
27
|
+
snippets: false
|
|
28
|
+
integrations: false
|
|
29
|
+
|
|
30
|
+
# Block code and pipeline operations
|
|
31
|
+
denied_tools_regex: "^manage_(files|pipeline|variable)"
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Senior Developer preset - code review and pipeline monitoring
|
|
2
|
+
#
|
|
3
|
+
# Extended access for senior developers:
|
|
4
|
+
# - Full code browsing and file management
|
|
5
|
+
# - Work items and merge requests
|
|
6
|
+
# - Pipeline monitoring (read-only)
|
|
7
|
+
# - Wiki and documentation
|
|
8
|
+
#
|
|
9
|
+
# No control over pipelines, variables, or webhooks.
|
|
10
|
+
#
|
|
11
|
+
# NOTE: This is a PRESET - host/auth come from environment variables.
|
|
12
|
+
|
|
13
|
+
description: "Senior Developer - code review, discussions, pipeline monitoring"
|
|
14
|
+
|
|
15
|
+
read_only: false
|
|
16
|
+
|
|
17
|
+
features:
|
|
18
|
+
wiki: true
|
|
19
|
+
milestones: false
|
|
20
|
+
pipelines: true
|
|
21
|
+
labels: true
|
|
22
|
+
mrs: true
|
|
23
|
+
files: true
|
|
24
|
+
variables: false
|
|
25
|
+
workitems: true
|
|
26
|
+
webhooks: false
|
|
27
|
+
snippets: true
|
|
28
|
+
integrations: false
|
|
29
|
+
|
|
30
|
+
# Block pipeline control and webhook management
|
|
31
|
+
denied_actions:
|
|
32
|
+
- "manage_pipeline:cancel"
|
|
33
|
+
- "manage_pipeline:retry"
|
|
34
|
+
- "manage_webhook:create"
|
|
35
|
+
- "manage_webhook:update"
|
|
36
|
+
- "manage_webhook:delete"
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Team Lead preset - planning and oversight
|
|
2
|
+
#
|
|
3
|
+
# Focused on team management:
|
|
4
|
+
# - Planning with milestones and work items
|
|
5
|
+
# - Code review via merge requests
|
|
6
|
+
# - Pipeline monitoring
|
|
7
|
+
# - Wiki and documentation
|
|
8
|
+
#
|
|
9
|
+
# No access to sensitive variables or webhooks.
|
|
10
|
+
#
|
|
11
|
+
# NOTE: This is a PRESET - host/auth come from environment variables.
|
|
12
|
+
|
|
13
|
+
description: "Team Lead - planning, milestones, team oversight, code review"
|
|
14
|
+
|
|
15
|
+
read_only: false
|
|
16
|
+
|
|
17
|
+
features:
|
|
18
|
+
wiki: true
|
|
19
|
+
milestones: true
|
|
20
|
+
pipelines: true
|
|
21
|
+
labels: true
|
|
22
|
+
mrs: true
|
|
23
|
+
files: true
|
|
24
|
+
variables: false
|
|
25
|
+
workitems: true
|
|
26
|
+
webhooks: false
|
|
27
|
+
snippets: true
|
|
28
|
+
integrations: false
|
|
29
|
+
|
|
30
|
+
# Block sensitive operations
|
|
31
|
+
denied_actions:
|
|
32
|
+
- "manage_variable:create"
|
|
33
|
+
- "manage_variable:update"
|
|
34
|
+
- "manage_variable:delete"
|
|
35
|
+
- "manage_webhook:create"
|
|
36
|
+
- "manage_webhook:update"
|
|
37
|
+
- "manage_webhook:delete"
|