@fndchagas/coolify-mcp 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +174 -0
- package/dist/config.js +7 -0
- package/dist/coolify/client.js +53 -0
- package/dist/generated/coolify-api.js +5 -0
- package/dist/server.js +66 -0
- package/dist/tools/coolify.js +130 -0
- package/openapi/coolify/v4.0.0-beta.460.json +11151 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fndchagas/coolify-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "tsx src/server.ts",
|
|
7
|
+
"build": "tsc -p tsconfig.json",
|
|
8
|
+
"start": "node dist/server.js",
|
|
9
|
+
"generate:openapi": "openapi-typescript openapi/coolify/v4.0.0-beta.460.json -o src/generated/coolify-api.ts",
|
|
10
|
+
"prepublishOnly": "npm run build"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@modelcontextprotocol/sdk": "1.25.1",
|
|
14
|
+
"express": "5.2.1",
|
|
15
|
+
"zod": "4.3.5"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@types/express": "^4.17.21",
|
|
19
|
+
"@types/node": "^22.18.1",
|
|
20
|
+
"openapi-typescript": "7.10.1",
|
|
21
|
+
"tsx": "4.21.0",
|
|
22
|
+
"typescript": "5.9.3"
|
|
23
|
+
},
|
|
24
|
+
"description": "MCP server for Coolify API (pinned to v4.0.0-beta.460).",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"author": "Fernando Chagas",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/frndchagas/coolify-mcp.git"
|
|
30
|
+
},
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/frndchagas/coolify-mcp/issues"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://github.com/frndchagas/coolify-mcp#readme",
|
|
35
|
+
"bin": {
|
|
36
|
+
"coolify-mcp": "dist/server.js"
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist",
|
|
40
|
+
"openapi",
|
|
41
|
+
"README.md",
|
|
42
|
+
"LICENSE"
|
|
43
|
+
],
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=18"
|
|
46
|
+
}
|
|
47
|
+
}
|