-
Notifications
You must be signed in to change notification settings - Fork 263
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.46 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@zereight/mcp-gitlab",
"version": "2.1.0",
"description": "GitLab MCP server for projects, merge requests, issues, pipelines, wiki, releases, and more",
"keywords": [
"gitlab",
"gitlab-mcp",
"mcp",
"mcp-server",
"model-context-protocol",
"gitlab-api",
"claude",
"cursor",
"vscode",
"copilot",
"ai-agent",
"merge-requests",
"pipelines",
"oauth",
"stdio",
"sse",
"streamable-http"
],
"license": "MIT",
"author": "zereight",
"type": "module",
"bin": "./build/index.js",
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zereight/gitlab-mcp.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"dev": "npm run build && node build/index.js",
"watch": "tsc --watch",
"deploy": "npm publish --access public",
"changelog": "auto-changelog -p",
"test": "npm run test:all",
"test:all": "npm run build && npm run test:mock && npm run test:live",
"test:mock": "node --import tsx/esm --test test/remote-auth-simple-test.ts && node --import tsx/esm --test test/mcp-oauth-tests.ts && tsx test/oauth-tests.ts && tsx test/test-list-merge-requests.ts && tsx test/test-list-project-members.ts && tsx test/test-download-attachment.ts && node --import tsx/esm --test test/test-job-artifacts.ts && node --import tsx/esm --test test/test-deployment-tools.ts && node --import tsx/esm --test test/test-merge-request-approval-state-tools.ts && node --import tsx/esm --test test/test-search-code.ts && node --import tsx/esm --test test/test-toolset-filtering.ts && node --import tsx/esm --test test/test-auth-retry.ts",
"test:mcp-oauth": "npm run build && node --import tsx/esm --test test/mcp-oauth-tests.ts",
"test:live": "node test/validate-api.js",
"test:remote-auth": "npm run build && node --import tsx/esm --test test/remote-auth-simple-test.ts",
"test:schema": "tsx test/schema-tests.ts",
"test:oauth": "tsx test/oauth-tests.ts",
"test:list-merge-requests": "npm run build && tsx test/test-list-merge-requests.ts",
"test:approvals": "npm run build && tsx test/test-merge-request-approvals.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"release": "bash scripts/release.sh",
"format": "prettier --write \"**/*.{js,ts,json,md}\"",
"format:check": "prettier --check \"**/*.{js,ts,json,md}\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.2",
"@types/node-fetch": "^2.6.12",
"express": "^5.1.0",
"fetch-cookie": "^3.1.0",
"form-data": "^4.0.0",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.6",
"node-fetch": "^3.3.2",
"open": "^10.2.0",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"pkce-challenge": "^5.0.0",
"socks-proxy-agent": "^8.0.5",
"tldts": "^6.1.86",
"tough-cookie": "^5.1.2",
"zod": "^3.24.2",
"zod-to-json-schema": "3.24.5"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"auto-changelog": "^2.4.0",
"dotenv": "^17.2.2",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"typescript": "^5.8.2"
}
}