GitLab Documentation MCP Server
Provides searchable access to GitLab's official documentation, enabling AI assistants to search and retrieve documentation from multiple GitLab OSS repositories including GitLab CE/EE, Runner, Omnibus, Gitaly, Pages, and Agent.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GitLab Documentation MCP ServerHow do I set up a GitLab CI/CD pipeline?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
GitLab Documentation MCP Server
A Model Context Protocol (MCP) server that provides searchable access to GitLab's official documentation. This server indexes markdown documentation from multiple GitLab OSS repositories and makes it available for AI assistants and other MCP clients.
Features
Full-text search across GitLab documentation using SQLite FTS5
Version-specific docs - Build for any GitLab version (e.g., 18.7.2) or latest
Multiple repositories indexed:
GitLab CE/EE (main application)
GitLab Runner (CI/CD runner)
Omnibus GitLab (installation packages)
Gitaly (Git RPC service)
GitLab Pages (static sites)
GitLab Agent (Kubernetes integration, includes KAS)
Optimized Docker image - Uses sparse checkout and filters to minimize size
Related MCP server: docs-mcp-server
Building the Docker Image
Find the GitLab Version
Look for the latest patch version for your desired GitLab release:
Build for Specific Version
# Set the GitLab version you want (use full patch version)
GITLAB_VERSION=18.7.2
# Build the image
GITLAB_MINOR=$(echo $GITLAB_VERSION | cut -d. -f1,2)
docker build -f docker/Dockerfile --build-arg GITLAB_VERSION=$GITLAB_VERSION \
-t gitlab-docs-mcp:$GITLAB_VERSION \
-t mcp/gitlab-docs-mcp:$GITLAB_VERSION \
-t gitlab-docs-mcp:$GITLAB_MINOR \
-t mcp/gitlab-docs-mcp:$GITLAB_MINOR .
# Verify the images were created
echo "\nCreated images:"
docker images | grep gitlab-docs-mcp
# Test the image - initialize and list tools
echo "\nTesting MCP server initialization:"
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}' | \
docker run -i --rm mcp/gitlab-docs-mcp:$GITLAB_VERSION | jq .
echo "\nListing available tools:"
(echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}'; \
echo '{"jsonrpc":"2.0","id":2,"method":"tools/list"}') | \
docker run -i --rm mcp/gitlab-docs-mcp:$GITLAB_VERSION 2>/dev/null | tail -1 | jq .Build for Latest (Main Branch)
docker build -f docker/Dockerfile \
-t gitlab-docs-mcp:latest \
-t mcp/gitlab-docs-mcp:latest .
# Verify the images were created
echo "\nCreated images:"
docker images | grep gitlab-docs-mcp
# Test the image - initialize and list tools
echo "\nTesting MCP server initialization:"
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}' | \
docker run -i --rm mcp/gitlab-docs-mcp:latest | head -20
echo "\nListing available tools:"
(echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}'; \
echo '{"jsonrpc":"2.0","id":2,"method":"tools/list"}') | \
docker run -i --rm mcp/gitlab-docs-mcp:latest 2>/dev/null | tail -1 | jq .```
## Installation
This server is published to the [MCP Community Registry](https://registry.modelcontextprotocol.io/v0/servers?search=io.github.nunolima/gitlab-docs-mcp).
### Prerequisites
- Docker installed and running
- MCP-compatible client (Claude Desktop, Cline, Cursor, etc.)
### Setup Instructions
#### Claude Desktop
1. **Locate your config file**:
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
- Linux: `~/.config/Claude/claude_desktop_config.json`
2. **Add the server configuration**:
```json
{
"mcpServers": {
"gitlab-docs": {
"command": "docker",
"args": ["run", "-i", "--rm", "nunolima/gitlab-docs-mcp:18.7"]
}
}
}Restart Claude Desktop - The server will appear in the MCP tools menu (๐ icon)
Cline (VS Code Extension)
Open Cline settings in VS Code
Navigate to MCP Servers section
Add this configuration:
{ "mcpServers": { "gitlab-docs": { "command": "docker", "args": ["run", "-i", "--rm", "nunolima/gitlab-docs-mcp:18.7"] } } }Reload VS Code window
Cursor
Open Cursor settings
Go to Features โ Model Context Protocol
Add the server configuration:
{ "mcpServers": { "gitlab-docs": { "command": "docker", "args": ["run", "-i", "--rm", "nunolima/gitlab-docs-mcp:18.7"] } } }
Version Selection
Choose the version that matches your GitLab deployment:
// For GitLab 18.7.x
"args": ["run", "-i", "--rm", "nunolima/gitlab-docs-mcp:18.7"]
// For latest GitLab version
"args": ["run", "-i", "--rm", "nunolima/gitlab-docs-mcp:latest"]Verification
After setup, verify the server is working:
In Claude Desktop: Look for the ๐ icon - you should see "gitlab-docs" listed
Test a query: Ask Claude to search GitLab documentation, e.g., "Search GitLab docs for CI/CD pipeline configuration"
Check Docker: Run
docker ps -aafter making a query to see if the container ran
An good test AI request message is: Using only the "gitlab-docs-mcp" mcp tools as source, what is the latest x.y.z GitLab version covered in the GitLab upgrade notes (doc/update/versions/)?
Troubleshooting
Server not appearing in client:
Ensure Docker is running:
docker infoCheck config file JSON is valid (no trailing commas, proper quotes)
Restart your MCP client completely
"Cannot connect to Docker daemon" error:
Start Docker Desktop
Verify Docker is accessible:
docker ps
Old documentation version:
Use a different version tag (see Version Selection above)
Check available tags: https://hub.docker.com/r/nunolima/gitlab-docs-mcp/tags
Available Tools
Once connected, the server provides these tools to your AI assistant:
search_docs: Full-text search across all GitLab documentationExample: "Search for GitLab Runner configuration options"
get_doc: Retrieve specific documentation by file pathExample: "Get the GitLab CI/CD variables documentation"
list_repositories: List all indexed GitLab repositoriesShows: GitLab CE/EE, Runner, Omnibus, Gitaly, Pages, Agent
Example Queries
Try asking your AI assistant:
"Search GitLab docs for how to set up GitLab Runner with Docker"
"Find documentation about GitLab CI/CD pipeline syntax"
"What does the GitLab documentation say about backup and restore?"
"Search for GitLab Pages custom domain configuration"
How It Works
Build time: Clones doc folders from GitLab repositories using sparse checkout
Indexing: Parses markdown files and builds an SQLite FTS5 search index
Runtime: MCP server provides search tools to query the indexed documentation
Versioning Strategy
Main GitLab repo: Uses full version tag (e.g.,
v18.7.2-ee)Omnibus GitLab: Uses full version with +ee suffix (e.g.,
18.7.2+ee.0)Other repositories: Use major.minor.0 version (e.g.,
v18.7.0)This uses the first stable release (.0) for each major.minor version
Example: Building GitLab 18.7.2 will use Runner/Gitaly/Pages/Agent v18.7.0
Development
Project Structure
python/gitlab-docs-mcp/
โโโ docker/
โ โโโ Dockerfile # Main Dockerfile with version support
โโโ indexer/
โ โโโ build_index.py # Builds search index from markdown files
โโโ server/
โ โโโ main.py # MCP server implementation
โโโ data/
โ โโโ docs.db # SQLite FTS5 database (generated)
โโโ repos/ # Cloned documentation (generated)Local Development
# Install dependencies
pip install -r requirements.txt
# Clone repos manually for testing
# (or let Docker handle it)
# Build index
python indexer/build_index.py
# Run server
python -m server.mainLicense
MIT License - Copyright (c) 2026 Nuno Lima
This project indexes documentation from GitLab's open source repositories. See individual repository licenses for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables interaction with GitLab accounts to manage repositories, merge requests, code reviews, and CI/CD pipelines through natural language.414221MIT
- Alicense-qualityAmaintenanceA Model Context Protocol (MCP) server that scrapes, indexes, and searches documentation for third-party software libraries and packages, supporting versioning and hybrid search.2,0001,615MIT
- -license-quality-maintenanceA Model Context Protocol server that enables AI assistants to interact with GitLab repositories, allowing tasks like managing merge requests, searching projects, and creating comments through RESTful API integration.132
- Alicense-qualityBmaintenanceMCP server for interacting with GitLab API, supporting both self-hosted instances and gitlab.com. Provides tools for managing issues, merge requests, code review, pipelines, milestones, releases, search, and file access.684MIT
Related MCP Connectors
MCP server for accessing curated awesome list documentation
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yoโฆ
MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nunolima/gitlab-docs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server