@masonator/coolify-mcp 0.6.0 → 0.8.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/README.md +17 -3
- package/dist/__tests__/coolify-client.test.js +627 -8
- package/dist/__tests__/integration/diagnostics.integration.test.d.ts +13 -0
- package/dist/__tests__/integration/diagnostics.integration.test.js +140 -0
- package/dist/__tests__/mcp-server.test.js +166 -0
- package/dist/lib/coolify-client.d.ts +39 -3
- package/dist/lib/coolify-client.js +403 -15
- package/dist/lib/mcp-server.js +42 -1
- package/dist/types/coolify.d.ts +89 -0
- package/package.json +14 -4
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ A Model Context Protocol (MCP) server for [Coolify](https://coolify.io/), enabli
|
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
|
|
9
|
-
This MCP server provides
|
|
9
|
+
This MCP server provides **58 tools** focused on **debugging, management, and deployment**:
|
|
10
10
|
|
|
11
11
|
| Category | Tools |
|
|
12
12
|
| ------------------ | -------------------------------------------------------------------------------------------------------- |
|
|
@@ -15,9 +15,10 @@ This MCP server provides 47 tools focused on **debugging, management, and deploy
|
|
|
15
15
|
| **Projects** | list, get, create, update, delete |
|
|
16
16
|
| **Environments** | list, get, create, delete |
|
|
17
17
|
| **Applications** | list, get, update, delete, start, stop, restart, logs, env vars (CRUD), create (private-gh, private-key) |
|
|
18
|
-
| **Databases** | list, get, start, stop, restart
|
|
18
|
+
| **Databases** | list, get, start, stop, restart, backups (list, get), backup executions (list, get) |
|
|
19
19
|
| **Services** | list, get, create, update, delete, start, stop, restart, env vars (list, create, delete) |
|
|
20
|
-
| **Deployments** | list, get, deploy, list by application
|
|
20
|
+
| **Deployments** | list, get, deploy, cancel, list by application |
|
|
21
|
+
| **Private Keys** | list, get, create, update, delete |
|
|
21
22
|
|
|
22
23
|
## Installation
|
|
23
24
|
|
|
@@ -222,6 +223,10 @@ node dist/index.js
|
|
|
222
223
|
- `start_database` - Start a database
|
|
223
224
|
- `stop_database` - Stop a database
|
|
224
225
|
- `restart_database` - Restart a database
|
|
226
|
+
- `list_database_backups` - List scheduled backups for a database
|
|
227
|
+
- `get_database_backup` - Get details of a scheduled backup
|
|
228
|
+
- `list_backup_executions` - List execution history for a scheduled backup
|
|
229
|
+
- `get_backup_execution` - Get details of a specific backup execution
|
|
225
230
|
|
|
226
231
|
### Services
|
|
227
232
|
|
|
@@ -242,8 +247,17 @@ node dist/index.js
|
|
|
242
247
|
- `list_deployments` - List running deployments (returns summary)
|
|
243
248
|
- `get_deployment` - Get deployment details
|
|
244
249
|
- `deploy` - Deploy by tag or UUID
|
|
250
|
+
- `cancel_deployment` - Cancel a running deployment
|
|
245
251
|
- `list_application_deployments` - List deployments for an application
|
|
246
252
|
|
|
253
|
+
### Private Keys
|
|
254
|
+
|
|
255
|
+
- `list_private_keys` - List all private keys (SSH keys for deployments)
|
|
256
|
+
- `get_private_key` - Get private key details
|
|
257
|
+
- `create_private_key` - Create a new private key for deployments
|
|
258
|
+
- `update_private_key` - Update a private key
|
|
259
|
+
- `delete_private_key` - Delete a private key
|
|
260
|
+
|
|
247
261
|
## Contributing
|
|
248
262
|
|
|
249
263
|
Contributions welcome! Please open an issue first to discuss major changes.
|