-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathzereight.gitlab-mcp-npx.json
More file actions
93 lines (86 loc) · 2.78 KB
/
Copy pathzereight.gitlab-mcp-npx.json
File metadata and controls
93 lines (86 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"$schema": "../schemas/server-definition.schema.json",
"id": "zereight.gitlab-mcp-npx",
"name": "GitLab (npx)",
"alias": "gitlab",
"description": "Manage GitLab repositories, issues, merge requests, pipelines, wikis, milestones, and releases. 107+ tools with configurable toolsets, read-only mode, and project scoping.",
"icon": "https://avatars.githubusercontent.com/u/42544600?v=4",
"schema_version": "2.1",
"categories": [
"version-control",
"developer-tools"
],
"tags": [
"gitlab",
"git",
"version-control",
"merge-requests",
"issues",
"ci-cd",
"pipelines"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@zereight/mcp-gitlab"
],
"env": {
"GITLAB_PERSONAL_ACCESS_TOKEN": "${input:GITLAB_PERSONAL_ACCESS_TOKEN}",
"GITLAB_API_URL": "${input:GITLAB_API_URL}"
},
"metadata": {
"inputs": [
{
"id": "GITLAB_PERSONAL_ACCESS_TOKEN",
"label": "GitLab Personal Access Token",
"description": "Personal Access Token for the GitLab API. Requires 'api' scope for full access, or 'read_api' for read-only mode.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "glpat-xxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://gitlab.com/-/user_settings/personal_access_tokens",
"instructions": "1. Go to GitLab > User Settings > Access Tokens\n2. Click 'Add new token'\n3. Select the 'api' scope (or 'read_api' for read-only)\n4. Click 'Create personal access token' and copy it",
"button_label": "Create Token"
}
},
{
"id": "GITLAB_API_URL",
"label": "GitLab API URL",
"description": "GitLab API base URL. Defaults to https://gitlab.com/api/v4 for gitlab.com. Change for self-hosted instances.",
"type": "url",
"required": false,
"secret": false,
"default": "https://gitlab.com/api/v4",
"placeholder": "https://gitlab.example.com/api/v4"
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Create a Personal Access Token with 'api' scope at https://gitlab.com/-/user_settings/personal_access_tokens"
},
"contributor": {
"name": "zereight",
"github": "zereight",
"url": "https://github.com/zereight/gitlab-mcp"
},
"links": {
"repository": "https://github.com/zereight/gitlab-mcp",
"homepage": "https://gitlab.com",
"documentation": "https://github.com/zereight/gitlab-mcp#readme"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": true
},
"changelog_url": "https://github.com/zereight/gitlab-mcp/releases"
}