This is a Zed extension that integrates the Model Context Protocol (MCP) server for GitLab, enabling project management, file operations, and more within the Zed editor.
- GitLab Integration: Seamless integration with GitLab API for project management and file operations
- Optional API URL: Support for both gitlab.com and self-hosted GitLab instances
- Automatic Authentication: Handles GitLab authentication using personal access tokens
Navigate to: Zed > Extensions Or use the command palette (macOS, Linux) to search extensions
You need to configure the following settings in your settings.json
:
{
"context_servers": {
"mcp-server-gitlab": {
"settings": {
"gitlab_personal_access_token": "YOUR_TOKEN"
}
}
}
}
For self-hosted GitLab instances, you can specify a custom API URL:
{
"context_servers": {
"mcp-server-gitlab": {
"settings": {
"gitlab_personal_access_token": "YOUR_TOKEN",
"gitlab_api_url": "https://your-gitlab-instance.com/api/v4"
}
}
}
}
If you're using Zed's agent mode, you need to enable this context server for your assistant:
- Open Zed's Agent settings
- Enable the GitLab MCP server. If you see that the status of the tool is a red dot, make sure you added your gitlab_personal_access_token in settings.json.
- Enable the GitLab MCP Server in the active assistant profile. In the chat section, click on the
Write | Ask
button, then click ontools
, then enable the GitLab MCP server.
To create a GitLab Personal Access Token:
- Go to GitLab User Settings > Access Tokens
- Select the required scopes:
api
for full API accessread_api
for read-only accessread_repository
andwrite_repository
for repository operations
- Create the token and save it securely
- Add the token to your Zed settings as shown above
- Ensure you have Rust and Cargo installed
- Clone the repository
- Run
cargo build --release
Apache-2.0
Contributions are welcome! Please feel free to submit a Pull Request.