package.json•1.28 kB
{
"name": "gitlab-mcp-server",
"version": "1.2.0",
"description": "GitLab MCP Server with GraphQL discovery",
"main": "dist/index.js",
"module": "./src/index.ts",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"prepublishOnly": "npm run build"
},
"bin": {
"gitlab-mcp-server": "dist/index.js"
},
"keywords": [
"mcp",
"gitlab",
"graphql",
"model-context-protocol"
],
"author": "Tim Pearson",
"license": "MIT",
"homepage": "https://github.com/ttpears/gitlab-mcp#readme",
"repository": {
"type": "git",
"url": "https://github.com/ttpears/gitlab-mcp.git"
},
"bugs": {
"url": "https://github.com/ttpears/gitlab-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.1",
"@types/express": "^5.0.3",
"express": "^5.1.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@smithery/sdk": "^1.7.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.10.0",
"jest": "^29.7.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"files": [
"dist",
"LICENSE",
"icon.svg"
]
}