forked from zereight/gitlab-mcp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
45 lines (45 loc) · 1.62 KB
/
server.json
File metadata and controls
45 lines (45 loc) · 1.62 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"$comment": "Schema version 2025-12-11 is the current MCP Registry standard. Only essential env vars are exposed here; USE_* feature flags are documented at websiteUrl and available via MCPB toggles.",
"name": "io.github.structured-world/gitlab-mcp",
"title": "Advanced GitLab MCP server",
"description": "GitLab MCP server with 44 tools for projects, MRs, pipelines, and more",
"websiteUrl": "https://gitlab-mcp.sw.foundation",
"repository": {
"url": "https://github.com/structured-world/gitlab-mcp",
"source": "github"
},
"version": "6.62.1",
"_versionNote": "Updated dynamically by prepare-release.sh during semantic-release",
"packages": [
{
"registryType": "npm",
"identifier": "@structured-world/gitlab-mcp",
"version": "6.62.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "GitLab Personal Access Token with 'api' and 'read_user' scopes",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "GITLAB_TOKEN"
},
{
"description": "GitLab instance API URL for self-hosted instances (defaults to https://gitlab.com)",
"isRequired": false,
"format": "string",
"name": "GITLAB_API_URL"
},
{
"description": "Enable read-only mode (disable all manage_* write operations)",
"isRequired": false,
"format": "boolean",
"name": "GITLAB_READ_ONLY_MODE"
}
]
}
]
}