Advanced GitLab MCP server for VS Code
io.github.structured-world/gitlab-mcp
58 CQRS tools exposing 230 GitLab operations across 26 entity types
client:VS Code
transport:stdio
runtime:npm
Install Advanced GitLab MCP server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gitlab-token",
"description": "GITLAB_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "gitlab-api-url",
"description": "GITLAB_API_URL",
"password": true
},
{
"type": "promptString",
"id": "gitlab-read-only-mode",
"description": "GITLAB_READ_ONLY_MODE",
"password": true
}
],
"servers": {
"gitlab-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@structured-world/gitlab-mcp"
],
"env": {
"GITLAB_TOKEN": "${input:gitlab-token}",
"GITLAB_API_URL": "${input:gitlab-api-url}",
"GITLAB_READ_ONLY_MODE": "${input:gitlab-read-only-mode}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs