@masonator/coolify-mcp
Version:
MCP server implementation for Coolify
79 lines (78 loc) • 2.23 kB
JSON
{
"name": "@masonator/coolify-mcp",
"scope": "@masonator",
"version": "2.6.2",
"description": "MCP server implementation for Coolify",
"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"
],
"author": "Stuart Mason",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/StuMason/coolify-mcp.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.23.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^16.2.7",
"markdownlint-cli2": "^0.20.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": ">=18"
},
"lint-staged": {
"*.{ts,js,json,md,yaml,yml}": "prettier --write",
"*.ts": "eslint --fix"
}
}