mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-01-30 04:22:03 +00:00
creating intital scaffolding for claude code plugins
This commit is contained in:
8
external_plugins/gitlab/.claude-plugin/plugin.json
Normal file
8
external_plugins/gitlab/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "gitlab",
|
||||
"description": "GitLab DevOps platform integration. Manage repositories, merge requests, CI/CD pipelines, issues, and wikis. Full access to GitLab's comprehensive DevOps lifecycle tools.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "GitLab"
|
||||
}
|
||||
}
|
||||
6
external_plugins/gitlab/.mcp.json
Normal file
6
external_plugins/gitlab/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"gitlab": {
|
||||
"type": "http",
|
||||
"url": "https://gitlab.com/api/v4/mcp"
|
||||
}
|
||||
}
|
||||
39
external_plugins/gitlab/README.md
Normal file
39
external_plugins/gitlab/README.md
Normal file
@@ -0,0 +1,39 @@
|
||||
# GitLab Plugin
|
||||
|
||||
GitLab DevOps platform integration for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Manage repositories, merge requests, CI/CD pipelines, issues, and wikis. Full access to GitLab's comprehensive DevOps lifecycle tools.
|
||||
|
||||
## Setup
|
||||
|
||||
The default configuration uses GitLab.com. For self-hosted GitLab instances, modify the URL in `.mcp.json`:
|
||||
|
||||
```json
|
||||
{
|
||||
"gitlab": {
|
||||
"type": "http",
|
||||
"url": "https://your-gitlab-instance.com/api/v4/mcp"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Node.js 20+ (for stdio transport alternative)
|
||||
|
||||
## Alternative: stdio Transport
|
||||
|
||||
```json
|
||||
{
|
||||
"gitlab": {
|
||||
"command": "npx",
|
||||
"args": ["-y", "mcp-remote", "https://gitlab.com/api/v4/mcp"]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Learn More
|
||||
|
||||
See [GitLab MCP Documentation](https://docs.gitlab.com/user/gitlab_duo/model_context_protocol/mcp_server/) for detailed setup instructions.
|
||||
Reference in New Issue
Block a user