@zereight/mcp-gitlab 1.0.76 → 2.0.0-beta.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zereight/mcp-gitlab",
3
- "version": "1.0.76",
3
+ "version": "2.0.0-beta.0",
4
4
  "description": "MCP server for using the GitLab API",
5
5
  "license": "MIT",
6
6
  "author": "zereight",
@@ -20,7 +20,8 @@
20
20
  "prepare": "npm run build",
21
21
  "dev": "npm run build && node build/index.js",
22
22
  "watch": "tsc --watch",
23
- "deploy": "npm publish --access public",
23
+ "npm:deploy": "npm publish --access public",
24
+ "npm:deploy:beta": "npm publish --access public --tag beta",
24
25
  "generate-tools": "npx ts-node scripts/generate-tools-readme.ts",
25
26
  "changelog": "auto-changelog -p",
26
27
  "test": "node test/validate-api.js",
package/build/utils.js DELETED
@@ -1,9 +0,0 @@
1
- export function formatBoolean(value) {
2
- if (value == null) {
3
- return value;
4
- }
5
- if (typeof value === 'string') {
6
- return value == 'true';
7
- }
8
- return value;
9
- }