package.json•1.7 kB
{
"name": "jenkins-mcp-server",
"version": "1.0.3",
"description": "🚀 AI-powered Jenkins management via Model Context Protocol. Trigger builds, manage jobs, and monitor CI/CD pipelines through your favorite AI assistant.",
"main": "src/index.js",
"type": "module",
"bin": {
"jenkins-mcp": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "node --test tests/",
"lint": "echo 'No linter configured. Consider adding ESLint.'",
"check": "node --check src/index.js",
"validate": "node -e \"import('./src/config/index.js').then(m => m.validateConfig() || process.exit(1))\"",
"prepublishOnly": "npm run check && npm run validate",
"postinstall": "echo '\n🎉 Jenkins MCP Server installed! See README.md for usage and SECURITY.md for safeguards.\n'"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.11.0",
"form-data": "^4.0.0"
},
"devDependencies": {
"nodemon": "^3.0.0"
},
"keywords": [
"jenkins",
"mcp",
"model-context-protocol",
"ai",
"ci-cd",
"devops",
"automation",
"claude",
"copilot",
"build-management",
"jenkins-api",
"artifacts",
"pipeline",
"deployment",
"build-automation"
],
"author": {
"name": "Utkarsh Mishra",
"email": "utkarsh@example.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/umishra1504/Jenkins-mcp-server.git"
},
"homepage": "https://github.com/umishra1504/Jenkins-mcp-server#readme",
"bugs": {
"url": "https://github.com/umishra1504/Jenkins-mcp-server/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"src/",
"README.md",
"LICENSE",
"SECURITY.md"
]
}