We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zereight/gitlab-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
README.md•400 B
# Start GitLab MCP Server with Docker Compose
## Starting the server
### 1. Set up environment variables
```bash
# in root
cd docker
cp .env.example .env
```
### 2. Override environment variables
### 3. Start with Docker Compose
```bash
docker compose up -d
```
## Upgrade the server
```bash
cd docker
docker compose down
git pull origin main
docker compose pull
docker compose up -d
```