@structured-world/gitlab-mcp 6.41.0 → 6.41.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.
- package/dist/src/cli/inject-tool-refs.d.ts +26 -0
- package/dist/src/cli/inject-tool-refs.js +194 -0
- package/dist/src/cli/inject-tool-refs.js.map +1 -0
- package/dist/src/entities/workitems/registry.js +3 -5
- package/dist/src/entities/workitems/registry.js.map +1 -1
- package/dist/src/entities/workitems/schema.d.ts +4 -4
- package/dist/src/entities/workitems/schema.js +2 -2
- package/dist/src/entities/workitems/schema.js.map +1 -1
- package/dist/src/graphql/workItems.d.ts +1 -1
- package/dist/src/utils/idConversion.js +0 -1
- package/dist/src/utils/idConversion.js.map +1 -1
- package/dist/structured-world-gitlab-mcp-6.41.2.tgz +0 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +7 -7
- package/dist/structured-world-gitlab-mcp-6.41.0.tgz +0 -0
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"diff": "4.0.4",
|
|
8
8
|
"esbuild": ">=0.25.0"
|
|
9
9
|
},
|
|
10
|
-
"version": "6.41.
|
|
10
|
+
"version": "6.41.2",
|
|
11
11
|
"description": "MCP server for using the GitLab API",
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"author": "Dmitry Prudnikov <mail@polaz.com>",
|
|
@@ -60,6 +60,7 @@
|
|
|
60
60
|
"format:check": "prettier --check \"**/*.{js,ts,json,md}\"",
|
|
61
61
|
"list-tools": "node dist/src/cli/list-tools.js",
|
|
62
62
|
"list-tools:dev": "node --env-file=.env.test -r source-map-support/register -r ts-node/register --experimental-specifier-resolution=node src/cli/list-tools.ts",
|
|
63
|
+
"inject-tool-refs": "node dist/src/cli/inject-tool-refs.js",
|
|
63
64
|
"docs:dev": "DOCS_BASE=/ vitepress dev docs",
|
|
64
65
|
"docs:build": "DOCS_BASE=/ vitepress build docs",
|
|
65
66
|
"docs:preview": "DOCS_BASE=/ vitepress preview docs",
|
|
@@ -67,28 +68,26 @@
|
|
|
67
68
|
},
|
|
68
69
|
"dependencies": {
|
|
69
70
|
"@clack/prompts": "1.0.0-alpha.9",
|
|
70
|
-
"@graphql-typed-document-node/core": "^3.2.0",
|
|
71
71
|
"@modelcontextprotocol/sdk": "^1.25.3",
|
|
72
72
|
"@prisma/client": "^7.3.0",
|
|
73
73
|
"express": "^5.2.1",
|
|
74
|
-
"form-data": "^4.0.5",
|
|
75
74
|
"graphql": "^16.12.0",
|
|
76
75
|
"graphql-tag": "^2.12.6",
|
|
77
76
|
"http-proxy-agent": "^7.0.2",
|
|
78
77
|
"https-proxy-agent": "^7.0.6",
|
|
79
78
|
"open": "^11.0.0",
|
|
80
|
-
"pino": "^10.
|
|
79
|
+
"pino": "^10.3.0",
|
|
81
80
|
"pino-pretty": "^13.1.3",
|
|
82
|
-
"prisma": "^7.3.0",
|
|
83
81
|
"socks-proxy-agent": "^8.0.5",
|
|
84
82
|
"transliteration": "^2.6.1",
|
|
85
|
-
"undici": "^7.19.
|
|
83
|
+
"undici": "^7.19.1",
|
|
86
84
|
"yaml": "^2.8.2",
|
|
87
85
|
"zod": "^4.3.6"
|
|
88
86
|
},
|
|
89
87
|
"devDependencies": {
|
|
90
|
-
"@cloudflare/workers-types": "^4.
|
|
88
|
+
"@cloudflare/workers-types": "^4.20260124.0",
|
|
91
89
|
"@eslint/js": "^9.39.2",
|
|
90
|
+
"@graphql-typed-document-node/core": "^3.2.0",
|
|
92
91
|
"@semantic-release/changelog": "^6.0.3",
|
|
93
92
|
"@semantic-release/exec": "^7.1.0",
|
|
94
93
|
"@semantic-release/git": "^10.0.1",
|
|
@@ -107,6 +106,7 @@
|
|
|
107
106
|
"eslint-plugin-prettier": "^5.5.5",
|
|
108
107
|
"jest": "^30.2.0",
|
|
109
108
|
"prettier": "^3.8.1",
|
|
109
|
+
"prisma": "^7.3.0",
|
|
110
110
|
"semantic-release": "^25.0.2",
|
|
111
111
|
"ts-jest": "^29.4.6",
|
|
112
112
|
"ts-node": "^10.9.2",
|
|
Binary file
|