package.json•2 kB
{
"name": "@ddukbg/github-enterprise-mcp",
"version": "1.3.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"github-enterprise-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc && npm run copy-i18n",
"copy-i18n": "mkdir -p dist/i18n/en dist/i18n/ko && cp i18n/en/*.json dist/i18n/en/ && cp i18n/ko/*.json dist/i18n/ko/",
"start": "node dist/index.js",
"dev": "concurrently \"npm run build:watch\" \"npm run dev:js\"",
"build:watch": "tsc --watch && npm run copy-i18n",
"dev:js": "nodemon dist/index.js --transport http",
"test": "npm run build && node test-i18n.js",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"mcp",
"github",
"enterprise",
"llm",
"ai",
"claude",
"cursor",
"model context protocol",
"issue tracking",
"pull request",
"git",
"repository",
"workflow"
],
"author": "ddukbg",
"license": "ISC",
"description": "MCP server for GitHub Enterprise API integration with Cursor, enabling AI access to repositories, issues, PRs and workflows",
"repository": {
"type": "git",
"url": "git+https://github.com/ddukbg/github-enterprise-mcp.git"
},
"homepage": "https://github.com/ddukbg/github-enterprise-mcp",
"bugs": {
"url": "https://github.com/ddukbg/github-enterprise-mcp/issues"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.13.10",
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.24.5"
},
"dependencies": {
"axios": "^1.8.4",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.19.2",
"node-fetch": "^3.3.2",
"universal-user-agent": "^7.0.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
}
}