@zereight/mcp-gitlab 1.0.23 → 1.0.24

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/build/index.js +0 -6
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -60,12 +60,6 @@ function normalizeGitLabApiUrl(url) {
60
60
  }
61
61
  // Use the normalizeGitLabApiUrl function to handle various URL formats
62
62
  const GITLAB_API_URL = normalizeGitLabApiUrl(process.env.GITLAB_API_URL || "");
63
- // Add debug logging for API URL construction
64
- console.log("=== MCP Server Configuration ===");
65
- console.log(`GITLAB_API_URL = "${GITLAB_API_URL}"`);
66
- console.log(`Example project API URL = "${GITLAB_API_URL}/projects/123"`);
67
- console.log(`Example Notes API URL = "${GITLAB_API_URL}/projects/123/issues/1/notes"`);
68
- console.log("===============================");
69
63
  if (!GITLAB_PERSONAL_ACCESS_TOKEN) {
70
64
  console.error("GITLAB_PERSONAL_ACCESS_TOKEN environment variable is not set");
71
65
  process.exit(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zereight/mcp-gitlab",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "MCP server for using the GitLab API",
5
5
  "license": "MIT",
6
6
  "author": "zereight",