initial gitlab version

This commit is contained in:
Taylor McCaslin
2024-11-25 16:39:34 -07:00
committed by David Soria Parra
parent b4a9a3dfae
commit ffe49237b9
6 changed files with 1584 additions and 0 deletions

31
src/gitlab/package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "@modelcontextprotocol/server-gitlab",
"version": "0.0.1",
"description": "MCP server for using the GitLab API",
"license": "MIT",
"author": "GitLab, PBC (https://gitlab.com)",
"homepage": "https://modelcontextprotocol.io",
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
"type": "module",
"bin": {
"mcp-server-gitlab": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"@types/node-fetch": "^2.6.12",
"node-fetch": "^3.3.2",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"shx": "^0.3.4",
"typescript": "^5.6.2"
}
}