@zereight/mcp-gitlab
npm
v2.1.60
Source verified
Published by zereight — publish provenance cryptographically ties this package to that repository. That is proof of origin, not an official vendor package.
GitLab MCP server for projects, merge requests, issues, pipelines, wiki, releases, and more
The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.
1. Threat score — 100 − 0 = 100. What the published surface and source actually contain:
The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.
2. Client adoption risk — 100 − 6 = 94. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:
| Points | Adoption-risk factor |
|---|---|
| −6 | capability blast radius (high) — client exposure if the model is manipulated |
Capability observations and info notes are shown under Findings but never scored.
Open any row's finding below for the file, line and evidence behind a deduction.
In the server's implementation (`build/utils/version-check.js:86`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: NFIG ?? join(homedir(), ".npmrc")); paths.push(join(process.cwd(), ".npmrc")); return paths; } function unquoteN
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/utils/version-check.js
In the server's implementation (`build/oauth.js:8`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: port { execFile } from "child_process"; import { promisify } from "util"; import open from "open"; import pkceChallenge
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/oauth.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/dynamic-api-url-allowlist.test.js:109`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: const response = await fetch(`http://${HOST}:${mcpPort}/downloads/job-artifacts?project_id=1&job_id=1`, { h
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/dynamic-api-url-allowlist.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/sse-auth-guard.test.js:59`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: const response = await fetch(`http://${LOOPBACK}:${port}/health`); if (response.ok) return;
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/sse-auth-guard.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/streamable-http-dns-rebinding.test.js:61`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: const response = await fetch(`http://${hostWithPort(HOST, port)}/health`); if (response.ok)
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/streamable-http-dns-rebinding.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/streamable-http-static-token-auth.test.js:60`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: const response = await fetch(`http://${HOST}:${port}/health`); if (response.ok) return;
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/streamable-http-static-token-auth.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/test-all-transport-server.js:220`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: const response = await fetch(`http://${HOST}:${port}/mcp`); assert.strictEqual(response.status, 406, 'GET /mcp
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/test-all-transport-server.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/test-remote-downloads.js:120`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: const res = await fetch(`http://${HOST}:${serverPort}/downloads/job-artifacts?project_id=${TEST_PROJECT_ID}&job_id
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/test-remote-downloads.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/utils/server-launcher.js:205`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: const response = await fetch(`http://${HOST}:${port}/health`, { method: "GET", signal:
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/utils/server-launcher.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/utils/version-check.test.js:26`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: gPath = join(configDir, ".npmrc"); const globalconfigPath = join(configDir, "global.npmrc"); writeFileSync(userc
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/utils/version-check.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/config-allowed-groups.test.js:15`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ecFileSync } from "node:child_process"; import * as path from "node:path"; import * as url from "node:url"; import { des
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/config-allowed-groups.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/sse-auth-guard.test.js:2`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: rt { spawn } from "node:child_process"; import { once } from "node:events"; import { afterEach, describe, test } from "n
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/sse-auth-guard.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/stateless/config-ttl.test.js:21`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ecFileSync } from "node:child_process"; import * as path from "node:path"; import * as url from "node:url"; import { des
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/stateless/config-ttl.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/streamable-http-dns-rebinding.test.js:2`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: rt { spawn } from "node:child_process"; import http from "node:http"; import { afterEach, describe, test } from "node:te
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/streamable-http-dns-rebinding.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/streamable-http-static-token-auth.test.js:2`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: rt { spawn } from "node:child_process"; import { once } from "node:events"; import { afterEach, describe, test } from "n
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/streamable-http-static-token-auth.test.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/test-ci-catalog.js:3`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: import { spawn } from "child_process"; import { MockGitLabServer, findMockServerPort } from "./utils/mock-gitlab-server
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/test-ci-catalog.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/test-ci-lint.js:3`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: import { spawn } from "child_process"; import { MockGitLabServer, findMockServerPort } from "./utils/mock-gitlab-server
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/test-ci-lint.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/test-ci-variables.js:3`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: import { spawn } from "child_process"; import { MockGitLabServer, findMockServerPort } from "./utils/mock-gitlab-server
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/test-ci-variables.js
In a packaging/dev/install script (shipped, but not the server runtime) (`build/test/test-create-repository.js:3`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: import { spawn } from "child_process"; import { MockGitLabServer, findMockServerPort } from "./utils/mock-gitlab-server
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server build/test/test-create-repository.js
Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.
| Version | Score | Findings | Engine | Scanned |
|---|---|---|---|---|
v2.1.60 latest |
A 94/100 | 19 | 1.13.0 | 2026-09-07 |
v2.1.58 |
A 94/100 | 19 | 1.13.0 | 2026-09-06 |
v2.1.56 |
A 94/100 | 19 | 1.13.0 | 2026-09-01 |
v2.1.54 |
A 94/100 | 17 | 1.13.0 | 2026-08-31 |
v2.1.53 |
A 94/100 | 17 | 1.13.0 | 2026-08-28 |
v2.1.52 |
A 94/100 | 17 | 1.13.0 | 2026-08-27 |
v2.1.49 |
A 94/100 | 17 | 1.12.1 | 2026-08-22 |
v2.1.48 |
A 94/100 | 17 | 1.12.1 | 2026-08-18 |
v2.1.47 |
A 94/100 | 17 | 1.12.1 | 2026-08-17 |
v2.1.46 |
A 94/100 | 17 | 1.12.1 | 2026-08-16 |
Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.
The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.
npx mcptrustchecker scan @zereight/mcp-gitlab --online
Independent packages implementing the same tool, scanned with the same engine. Compare all 26 side by side →
MCP Server for GitLab API - repository management and DevOps automation
GitLab MCP Server with GraphQL discovery
MCP server for GitLab API integration with comprehensive project, issue, merge request, pipeline, and job management capabilities
GitLab MCP server for projects, merge requests, issues, pipelines, wiki, releases, and more
基于 Model Context Protocol (MCP) 框架构建的 GitLab 集成服务器,提供与 GitLab 实例的强大集成能力
Works with the GitLab REST API v4 using a personal access token to browse projects, read repository files, and manage issues and merge requests; supports GitLab.com and self-hosted instances.
Authenticated MCP transport with HTTP Signatures for AAuth agents
Local-first MCP server for parallel AI coding agents to claim file ownership before edits, preventing stomping on each other in the same worktree.
Agent-agnostic intercommunication system — sessions, messaging, channels, shared state, and real-time events
MCP server for AI agent task communication and delegation with diagnostic lifecycle visibility
Programmatic add/link/unlink for MCP servers across 23 AI coding agents (Claude Code, Claude Desktop, Cursor, VS Code, Codex, Gemini CLI, Zed, Cline, OpenCode, Goose, Kiro, Windsurf, and more). Functional API with dry-run support.
MCP server layer exposing agent-mesh orchestrator as an MCP agent