everything vs mcp-gitlab-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-gitlab-server by yoda-digital | |
|---|---|---|
| Stars | ★ 85,748 | ★ 49 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsOps & InfraProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-gitlab-server · Summary
Production-ready GitLab MCP server with 86 tools, full API coverage, multiple auth modes and transports.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp-gitlab-server · Use cases
- Enable AI assistants to manage GitLab repositories, create issues and merge requests
- Automate CI/CD pipeline management through AI agents
- Provide GitLab access to team members through MCP-compatible clients without direct API access
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmcp-gitlab-server · Install
Installation
Using npm (for Claude Desktop, Cursor, Zed)
Add to your client's MCP configuration (e.g., claude_desktop_config.json):
{
"mcpServers": {
"gitlab": {
"command": "npx",
"args": ["-y", "@yoda.digital/gitlab-mcp-server"],
"env": {
"GITLAB_PERSONAL_ACCESS_TOKEN": "glpat-…",
"GITLAB_API_URL": "https://gitlab.com/api/v4"
}
}
}
}Using Docker (remote deployment)
docker run --rm -p 3000:3000 \
-e HOST=0.0.0.0 \
-e AUTH_MODE=oauth \
-e USE_STREAMABLE_HTTP=true \
ghcr.io/yoda-digital/mcp-gitlab-server:latestUsing Helm (Kubernetes)
helm install gitlab-mcp oci://ghcr.io/yoda-digital/charts/gitlab-mcp