From 340a5ffdc8db214600e4ee485902085f5e6fdbb0 Mon Sep 17 00:00:00 2001 From: simple Date: Thu, 24 Apr 2025 23:57:58 +0900 Subject: [PATCH] =?UTF-8?q?[main]=20feat:=20GitLab=20=EC=9C=84=ED=82=A4=20?= =?UTF-8?q?=EA=B8=B0=EB=8A=A5=20=ED=99=9C=EC=84=B1=ED=99=94=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EC=B6=94=EA=B0=80=20=E2=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🚀 Breaking Changes: - GITLAB_READ_ONLY_MODE을 'false'로 변경 - USE_GITLAB_WIKI를 추가하여 위키 관련 도구 활성화 📝 Details: - README.md에 새로운 환경 변수 설명 추가 --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 53635a8..c94af32 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,8 @@ When using with the Claude App, you need to set up your API key and URLs directl "env": { "GITLAB_PERSONAL_ACCESS_TOKEN": "your_gitlab_token", "GITLAB_API_URL": "your_gitlab_api_url", - "GITLAB_READ_ONLY_MODE": "true" + "GITLAB_READ_ONLY_MODE": "false", + "USE_GITLAB_WIKI":"true" } } } @@ -36,6 +37,7 @@ When using with the Claude App, you need to set up your API key and URLs directl - `GITLAB_PERSONAL_ACCESS_TOKEN`: Your GitLab personal access token. - `GITLAB_API_URL`: Your GitLab API URL. (Default: `https://gitlab.com/api/v4`) - `GITLAB_READ_ONLY_MODE`: When set to 'true', restricts the server to only expose read-only operations. Useful for enhanced security or when write access is not needed. Also useful for using with Cursor and it's 40 tool limit. +- `USE_GITLAB_WIKI`: When set to 'true', enables the wiki-related tools (list_wiki_pages, get_wiki_page, create_wiki_page, update_wiki_page, delete_wiki_page). By default, wiki features are disabled. ## Tools 🛠️