forked from StuMason/coolify-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@masonator/coolify-mcp",
"scope": "@masonator",
"version": "2.19.4",
"mcpName": "io.github.StuMason/coolify",
"description": "MCP server for Coolify — 44 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 --testPathPatterns=integration --testTimeout=60000 --coverage=false",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check:spec-drift": "node scripts/check-client-spec-drift.mjs",
"build:chunks": "node scripts/split-openapi-chunks.mjs",
"check:chunk-drift": "node scripts/split-openapi-chunks.mjs --check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"prepublishOnly": "npm test && npm run lint",
"version": "node scripts/sync-manifests.mjs && prettier --write server.json manifest.json && git add server.json manifest.json",
"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": "^26.0.0",
"@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.23.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",
"qs": "^6.15.2",
"hono": "^4.12.25",
"@hono/node-server": "^2.0.5",
"express-rate-limit": "^8.5.2",
"path-to-regexp": "^8.4.2",
"@modelcontextprotocol/sdk": {
"ajv": "^8.20.0"
},
"fast-uri": "^4.0.0",
"ip-address": "^10.2.0",
"flatted": "^3.4.2",
"brace-expansion": "^5.0.6",
"picomatch": "^4.0.4",
"js-yaml": "^4.3.1",
"markdown-it": "^14.2.0"
},
"lint-staged": {
"*.{ts,js,json,md,yaml,yml}": "prettier --write",
"*.ts": "eslint --fix"
}
}