package.json•1.1 kB
{
"name": "mcp-gitlab",
"version": "0.0.1",
"description": "GitLab Pipeline MCP Server - A Model Context Protocol server for GitLab pipeline operations",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-gitlab": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"dev": "cross-env NODE_ENV=development tsx src/index.ts",
"start": "node build/index.js http 3300",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"gitlab",
"pipeline",
"ci-cd",
"model-context-protocol"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"axios": "^1.6.0",
"cors": "^2.8.5",
"cross-env": "^10.0.0",
"dotenv": "^16.3.0",
"express": "^5.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}