summaryrefslogtreecommitdiff
path: root/servers/gitlab_glab
diff options
context:
space:
mode:
authorknightdave <knightdave@noreply.codeberg.org>2025-05-29 09:16:52 +0200
committerknightdave <knightdave@noreply.codeberg.org>2025-05-29 09:16:52 +0200
commit2778e2fd17fc205248a73ba97e6ef23ad26aaed1 (patch)
treedff289c0d6593f3347c751a90999645a9b859452 /servers/gitlab_glab
parent07db2730881114a94ce9ec92f6cb39794f931f72 (diff)
parent4a0b34af72ce093b2f4db84fc842f0b4d5963788 (diff)
Merge pull request 'docs: update README files with correct repository URL and MCP server usage instructions' (#2) from feature/update-documentation into main
Reviewed-on: https://codeberg.org/knightdave/dawids-mcp-servers/pulls/2
Diffstat (limited to 'servers/gitlab_glab')
-rw-r--r--servers/gitlab_glab/README.md26
1 files changed, 17 insertions, 9 deletions
diff --git a/servers/gitlab_glab/README.md b/servers/gitlab_glab/README.md
index cef74c2..1457cad 100644
--- a/servers/gitlab_glab/README.md
+++ b/servers/gitlab_glab/README.md
@@ -22,26 +22,34 @@ This MCP server provides integration with GitLab through the GitLab CLI (`glab`)
```bash
# Clone the repository
-git clone https://github.com/yourusername/dawids-mcp-servers.git
+git clone https://codeberg.org/knightdave/dawids-mcp-servers.git
cd dawids-mcp-servers
-
-# Install the server
-cd servers/gitlab_glab
-uv pip install -e .
```
## Usage
-### Running the server with stdio transport (for local development)
+### Running from repository root (recommended)
```bash
-mcp-gitlab-glab --transport stdio
+# Run with stdio transport (for MCP client integration)
+uv --directory /path-to-repo/dawids-mcp-servers/servers/gitlab_glab run mcp-gitlab-glab --transport stdio
+
+# Run with remote transport
+uv --directory /path-to-repo/dawids-mcp-servers/servers/gitlab_glab run mcp-gitlab-glab --transport remote --host 0.0.0.0 --port 8080
```
-### Running the server with remote transport
+Replace `/path-to-repo` with the actual path to where you cloned this repository.
+
+### Alternative: Running from server directory
```bash
-mcp-gitlab-glab --transport remote --host 0.0.0.0 --port 8080
+cd servers/gitlab_glab
+
+# Run with stdio transport
+uv run mcp-gitlab-glab --transport stdio
+
+# Run with remote transport
+uv run mcp-gitlab-glab --transport remote --host 0.0.0.0 --port 8080
```
## Available Tools