@ttpears/gitlab-mcp-server 1.15.1 → 1.15.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -1
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -74,7 +74,15 @@ npm install -g @ttpears/gitlab-mcp-server
74
74
 
75
75
  ### Claude Desktop
76
76
 
77
- Add to `claude_desktop_config.json`:
77
+ **Option A — MCPB one-click install (read-only):** download
78
+ `gitlab-mcp-community-${VERSION}.mcpb` from the
79
+ [latest GitHub Release](https://github.com/ttpears/gitlab-mcp/releases/latest)
80
+ and drag it onto the Claude Desktop window. Fill in your GitLab URL and a
81
+ read-only PAT (`read_api` scope) when prompted; the token is stored in your
82
+ OS keychain. This bundle is intentionally read-only — use Option B if you need
83
+ to create/update issues or MRs.
84
+
85
+ **Option B — manual config (read or write):** add to `claude_desktop_config.json`:
78
86
 
79
87
  ```json
80
88
  {
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@ttpears/gitlab-mcp-server",
3
- "version": "1.15.1",
3
+ "version": "1.15.2",
4
4
  "description": "GitLab MCP Server with GraphQL discovery",
5
5
  "main": "dist/index.js",
6
6
  "module": "./src/index.ts",
7
7
  "type": "module",
8
8
  "scripts": {
9
9
  "build": "tsc && chmod +x dist/index.js",
10
+ "build:mcpb": "npm run build && node scripts/build-mcpb.mjs",
10
11
  "dev": "tsx src/index.ts",
11
12
  "start": "node dist/index.js",
12
13
  "test": "jest",