gitlab ci mcp for VS Code
io.github.mshegolev/gitlab-ci-mcp
GitLab CI/CD MCP — pipelines, jobs, schedules, MRs, files. Any GitLab (SaaS or self-hosted).
client:VS Code
transport:stdio
runtime:pypi
Install gitlab ci mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gitlab-url",
"description": "GITLAB_URL",
"password": true
},
{
"type": "promptString",
"id": "gitlab-token",
"description": "GITLAB_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "gitlab-project-path",
"description": "GITLAB_PROJECT_PATH",
"password": true
},
{
"type": "promptString",
"id": "gitlab-ssl-verify",
"description": "GITLAB_SSL_VERIFY",
"password": true
}
],
"servers": {
"gitlab-ci-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"gitlab-ci-mcp"
],
"env": {
"GITLAB_URL": "${input:gitlab-url}",
"GITLAB_TOKEN": "${input:gitlab-token}",
"GITLAB_PROJECT_PATH": "${input:gitlab-project-path}",
"GITLAB_SSL_VERIFY": "${input:gitlab-ssl-verify}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs