@wanadev/mcp-gitlab 1.0.1 → 1.0.3

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.
package/README.md CHANGED
@@ -78,7 +78,7 @@ All write tools (`create_*`, `update_*`, `close_*`, `add_issue_to_epic`, `add_is
78
78
 
79
79
  This prevents accidental changes: the LLM always shows what it intends to do first and only proceeds after your approval.
80
80
 
81
- ## All 29 tools
81
+ ## All 30 tools
82
82
 
83
83
  ### Epics (9 tools -- requires GitLab Premium/Ultimate)
84
84
 
@@ -123,6 +123,12 @@ This prevents accidental changes: the LLM always shows what it intends to do fir
123
123
  | `list_merge_requests` | List merge requests for a group | group | -- |
124
124
  | `get_merge_request` | Get merge request details | project | -- |
125
125
 
126
+ ### Iterations (1 tool -- requires GitLab Premium/Ultimate)
127
+
128
+ | Tool | Description | Scope | Write |
129
+ |------|-------------|:-----:|:-----:|
130
+ | `list_iterations` | List iterations/sprints (filter by state: upcoming, current, closed) | group | -- |
131
+
126
132
  ### Utilities (6 tools)
127
133
 
128
134
  | Tool | Description | Scope | Write |
@@ -169,16 +175,6 @@ Claude calls `list_merge_requests` (state: opened) → `list_issues` (state: clo
169
175
 
170
176
  Claude chains `get_epic` → `list_epic_issues` → reads `time_stats` from each issue → `list_epic_notes` → returns a structured progress report.
171
177
 
172
- | Tool | Description | `group_id` requis | dry_run |
173
- |------|-------------|:---:|:---:|
174
- | `list_epics` | Lister les epics (filtre par etat, recherche, labels) | Oui | — |
175
- | `get_epic` | Details d'un epic par numero | Oui | — |
176
- | `create_epic` | Creer un epic (avec milestone_id optionnel) | Oui | Oui |
177
- | `update_epic` | Modifier un epic (dont milestone_id) | Oui | Oui |
178
- | `close_epic` | Fermer un epic | Oui | Oui |
179
- | `list_epic_issues` | Issues rattachees a un epic | Oui | — |
180
- | `add_issue_to_epic` | Rattacher une issue a un epic | Oui | Oui |
181
-
182
178
  ### Cross-group dashboard
183
179
 
184
180
  > *"Compare the open issue count across my three groups: wanadev, kp1, and infra. Which group has the most overdue issues?"*
package/dist/index.js CHANGED
@@ -24,7 +24,7 @@ async function main() {
24
24
  const client = new GitLabClient({ baseUrl, token, readOnly });
25
25
  const server = new McpServer({
26
26
  name: "@wanadev/mcp-gitlab",
27
- version: "1.0.1",
27
+ version: "1.0.3",
28
28
  });
29
29
  registerEpicTools(server, client);
30
30
  registerIssueTools(server, client);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wanadev/mcp-gitlab",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "MCP server for GitLab epics, issues, and milestones management",
5
5
  "type": "module",
6
6
  "bin": {
@@ -29,6 +29,10 @@
29
29
  "milestones",
30
30
  "claude-desktop"
31
31
  ],
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "https://github.com/wanadev/gitlab-mcp.git"
35
+ },
32
36
  "license": "MIT",
33
37
  "dependencies": {
34
38
  "@modelcontextprotocol/sdk": "^1.12.1",