gitlab-mcp 0.1.0 → 0.1.1

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 +4 -1
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -16,7 +16,10 @@ GitLabDiscussionNoteSchema, // Added
16
16
  GitLabDiscussionSchema, UpdateMergeRequestNoteSchema, // Added
17
17
  ListMergeRequestDiscussionsSchema, } from "./schemas.js";
18
18
  // Load .env from the current working directory
19
- config({ path: path.resolve(process.cwd(), ".env") });
19
+ config({
20
+ path: process.env.ENV_FILE ?? path.resolve(process.cwd(), ".env"),
21
+ });
22
+ console.log('process.cwd()', process.cwd());
20
23
  /**
21
24
  * Read version from package.json
22
25
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitlab-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Model Context Protocol server for GitLab integration",
5
5
  "main": "./build/index.js",
6
6
  "type": "module",