{ "name": "@masonator/coolify-mcp", "scope": "@masonator", "version": "2.12.0", "mcpName": "io.github.StuMason/coolify", "description": "MCP server for Coolify — 42 optimized tools for infrastructure management, diagnostics, and documentation search", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "bin": { "coolify-mcp": "dist/index.js" }, "files": [ "dist" ], "scripts": { "build": "tsc && shx chmod +x dist/*.js", "dev": "tsc --watch", "test": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=integration", "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=integration", "test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --testPathIgnorePatterns=integration", "test:integration": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=integration --testTimeout=60000", "lint": "eslint .", "lint:fix": "eslint . --fix", "format": "prettier --write .", "format:check": "prettier --check .", "prepare": "husky", "prepublishOnly": "npm test && npm run lint", "start": "node dist/index.js" }, "keywords": [ "coolify", "mcp", "model-context-protocol", "infrastructure", "deployment", "self-hosted", "paas", "ai", "devops" ], "author": { "name": "Stuart Mason", "url": "https://stumason.dev" }, "license": "MIT", "homepage": "https://stumason.dev", "repository": { "type": "git", "url": "https://github.com/StuMason/coolify-mcp.git" }, "bugs": { "url": "https://github.com/StuMason/coolify-mcp/issues" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.23.0", "minisearch": "^7.2.0", "zod": "^4.3.5" }, "devDependencies": { "@eslint/js": "^10.0.1", "@types/jest": "^30.0.0", "@types/node": "^25.0.3", "@typescript-eslint/eslint-plugin": "^8.51.0", "@typescript-eslint/parser": "^8.51.0", "dotenv": "^17.2.3", "eslint": "^10.0.0", "eslint-config-prettier": "^10.1.8", "globals": "^17.0.0", "husky": "^9.0.11", "jest": "^30.3.0", "jest-junit": "^17.0.0", "lint-staged": "^17.0.4", "markdownlint-cli2": "^0.22.0", "prettier": "^3.5.3", "shx": "^0.4.0", "ts-jest": "^29.2.6", "typescript": "^5.8.2", "typescript-eslint": "^8.51.0" }, "engines": { "node": ">=20" }, "overrides": { "handlebars": "^4.7.9" }, "lint-staged": { "*.{ts,js,json,md,yaml,yml}": "prettier --write", "*.ts": "eslint --fix" } }