Skip to content

Commit 174fa4b

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for GITLAB_PERSONAL_ACCESS_TOKEN; icon updated)
1 parent e71379f commit 174fa4b

1 file changed

Lines changed: 21 additions & 12 deletions

File tree

servers/community.gitlab.json

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,27 @@
44
"name": "GitLab",
55
"alias": "gitlab",
66
"description": "Manage GitLab repositories, issues, merge requests, and files. Search projects, create branches, push files, and manage code reviews.",
7-
"icon": "https://avatars.githubusercontent.com/u/182288589?v=4",
7+
"icon": "https://avatars.githubusercontent.com/u/1086321?v=4",
88
"schema_version": "2.1",
9-
"categories": ["version-control", "developer-tools"],
10-
"tags": ["gitlab", "git", "version-control", "merge-requests", "issues", "ci-cd"],
11-
9+
"categories": [
10+
"version-control",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"gitlab",
15+
"git",
16+
"version-control",
17+
"merge-requests",
18+
"issues",
19+
"ci-cd"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "@modelcontextprotocol/server-gitlab"],
24+
"args": [
25+
"-y",
26+
"@modelcontextprotocol/server-gitlab"
27+
],
1628
"env": {
1729
"GITLAB_PERSONAL_ACCESS_TOKEN": "${input:GITLAB_PERSONAL_ACCESS_TOKEN}",
1830
"GITLAB_API_URL": "${input:GITLAB_API_URL}"
@@ -23,7 +35,7 @@
2335
"id": "GITLAB_PERSONAL_ACCESS_TOKEN",
2436
"label": "GitLab Personal Access Token",
2537
"description": "Personal Access Token for the GitLab API. Requires 'api' scope.",
26-
"type": "password",
38+
"type": "text",
2739
"required": true,
2840
"secret": true,
2941
"placeholder": "glpat-xxxxxxxxxxxxxxxxxxxx",
@@ -45,26 +57,23 @@
4557
]
4658
}
4759
},
48-
4960
"auth": {
5061
"type": "api_key",
5162
"instructions": "Create a Personal Access Token with 'api' scope at https://gitlab.com/-/user_settings/personal_access_tokens"
5263
},
53-
5464
"contributor": {
5565
"name": "Model Context Protocol",
5666
"github": "modelcontextprotocol",
5767
"url": "https://modelcontextprotocol.io"
5868
},
59-
6069
"links": {
6170
"repository": "https://github.com/modelcontextprotocol/servers",
6271
"homepage": "https://gitlab.com",
6372
"documentation": "https://github.com/modelcontextprotocol/servers/tree/main/src/gitlab#readme"
6473
},
65-
66-
"platforms": ["all"],
67-
74+
"platforms": [
75+
"all"
76+
],
6877
"capabilities": {
6978
"tools": true,
7079
"resources": false,

0 commit comments

Comments
 (0)