package.jsonβ’2.98 kB
{
"name": "arc-config-mcp",
"version": "1.5.3",
"description": "Advanced TypeScript MCP server for GitHub Actions Runner Controller (ARC) management with AI-powered automation, policy engine, and natural language operations",
"main": "build/index.js",
"type": "module",
"bin": {
"arc-config-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod +x build/index.js",
"dev": "tsx src/index.ts",
"start": "node build/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "npm run build",
"policy:check": "node scripts/policy-check.js",
"policy:report": "node scripts/policy-report.js",
"policy:fix": "node scripts/policy-fix.js",
"release:patch": "npm version patch && git push --tags",
"release:minor": "npm version minor && git push --tags",
"release:major": "npm version major && git push --tags",
"docker:build": "docker build -t arc-config-mcp .",
"docker:run": "docker run -p 3000:3000 arc-config-mcp",
"clean": "rm -rf build coverage",
"precommit": "npm run lint && npm run test && npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"arc",
"github-actions",
"runner-controller",
"kubernetes",
"ai",
"automation",
"policy-engine",
"natural-language",
"compliance",
"devops"
],
"author": "tsviz",
"license": "MIT",
"dependencies": {
"@kubernetes/client-node": "^0.21.0",
"@modelcontextprotocol/sdk": "^1.17.4",
"@octokit/rest": "^20.0.2",
"axios": "^1.6.8",
"commander": "^12.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fs-extra": "^11.2.0",
"helmet": "^7.1.0",
"lodash": "^4.17.21",
"semver": "^7.5.4",
"winston": "^3.11.0",
"yaml": "^2.4.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.30",
"@types/semver": "^7.5.6",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"files": [
"build",
"README.md",
"LICENSE",
"config",
"scripts"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tsviz/arc-config-mcp"
},
"bugs": {
"url": "https://github.com/tsviz/arc-config-mcp/issues"
},
"homepage": "https://github.com/tsviz/arc-config-mcp#readme"
}