Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gitlab-mcp",
"description": "GitLab MCP server with GraphQL discovery and team activity tools",
"version": "1.18.0",
"version": "1.18.1",
"icon": "assets/logo.svg",
"author": {
"name": "Tim Pearson"
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.18.1] - 2026-05-21

### Fixed
- `list_my_todos` and `list_my_events` no longer reject the call when no per-request `userCredentials` are supplied. Both handlers had a guard that short-circuited the four-step token resolution in `getClient()`, so they failed with `requires user authentication — the to-do inbox is scoped to the caller` even when a valid `GITLAB_TOKEN` was configured. Same bug class as the 1.15.1 fix, which only patched the write tools. Reads now fall back to the env token like every other read tool. Per-call user credentials and HTTP `Authorization: Bearer` flows continue to work unchanged.

## [1.18.0] - 2026-05-21

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ttpears/gitlab-mcp-server",
"version": "1.18.0",
"version": "1.18.1",
"description": "GitLab MCP Server with GraphQL discovery",
"main": "dist/index.js",
"module": "./src/index.ts",
Expand Down
6 changes: 0 additions & 6 deletions src/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1867,9 +1867,6 @@ const listMyTodosTool: Tool = {
})),
handler: async (input, client, userConfig) => {
const credentials = input.userCredentials ? validateUserConfig(input.userCredentials) : userConfig;
if (!credentials) {
throw new Error('list_my_todos requires user authentication — the to-do inbox is scoped to the caller.');
}
const groupPath = input.groupPath?.trim();
const projectPath = input.projectPath?.trim();
if (input.groupPath !== undefined && !groupPath) {
Expand Down Expand Up @@ -2012,9 +2009,6 @@ const listMyEventsTool: Tool = {
})),
handler: async (input, client, userConfig) => {
const credentials = input.userCredentials ? validateUserConfig(input.userCredentials) : userConfig;
if (!credentials) {
throw new Error('list_my_events requires user authentication — the feed is scoped to the caller.');
}
const { userCredentials, ...params } = input;
return client.listMyEvents(params, credentials);
},
Expand Down
Loading