@masonator/coolify-mcp 2.9.0 → 2.11.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 +25 -22
- package/dist/__tests__/coolify-client.test.js +656 -0
- package/dist/__tests__/mcp-server.test.js +215 -0
- package/dist/lib/coolify-client.d.ts +42 -1
- package/dist/lib/coolify-client.js +225 -0
- package/dist/lib/mcp-server.js +449 -20
- package/dist/types/coolify.d.ts +172 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,33 +9,36 @@
|
|
|
9
9
|
[](https://codecov.io/gh/StuMason/coolify-mcp)
|
|
10
10
|
[](https://mseep.ai/app/stumason-coolify-mcp)
|
|
11
11
|
|
|
12
|
-
> **The most comprehensive MCP server for Coolify** -
|
|
12
|
+
> **The most comprehensive MCP server for Coolify** - 42 optimized tools, smart diagnostics, documentation search, and batch operations for managing your self-hosted PaaS through AI assistants.
|
|
13
13
|
|
|
14
14
|
A Model Context Protocol (MCP) server for [Coolify](https://coolify.io/), enabling AI assistants to manage and debug your Coolify instances through natural language.
|
|
15
15
|
|
|
16
16
|
## Features
|
|
17
17
|
|
|
18
|
-
This MCP server provides **
|
|
19
|
-
|
|
20
|
-
| Category | Tools
|
|
21
|
-
| -------------------- |
|
|
22
|
-
| **Infrastructure** | `get_infrastructure_overview`, `get_mcp_version`, `get_version`
|
|
23
|
-
| **Diagnostics** | `diagnose_app`, `diagnose_server`, `find_issues`
|
|
24
|
-
| **Batch Operations** | `restart_project_apps`, `bulk_env_update`, `stop_all_apps`, `redeploy_project`
|
|
25
|
-
| **Servers** | `list_servers`, `get_server`, `validate_server`, `server_resources`, `server_domains`
|
|
26
|
-
| **Projects** | `projects` (list, get, create, update, delete via action param)
|
|
27
|
-
| **Environments** | `environments` (list, get, create, delete via action param)
|
|
28
|
-
| **Applications** | `list_applications`, `get_application`, `application` (CRUD), `application_logs`
|
|
29
|
-
| **Databases** | `list_databases`, `get_database`, `database` (create 8 types, delete), `database_backups` (CRUD schedules,
|
|
30
|
-
| **Services** | `list_services`, `get_service`, `service` (create, update, delete)
|
|
31
|
-
| **Control** | `control` (start/stop/restart for apps, databases, services)
|
|
32
|
-
| **Env Vars** | `env_vars` (CRUD for application and
|
|
33
|
-
| **
|
|
34
|
-
| **
|
|
35
|
-
| **
|
|
36
|
-
| **
|
|
37
|
-
| **
|
|
38
|
-
| **
|
|
18
|
+
This MCP server provides **42 token-optimized tools** for **debugging, management, and deployment**:
|
|
19
|
+
|
|
20
|
+
| Category | Tools |
|
|
21
|
+
| -------------------- | ----------------------------------------------------------------------------------------------------------------------------------- |
|
|
22
|
+
| **Infrastructure** | `get_infrastructure_overview`, `get_mcp_version`, `get_version`, `system` (health, list_resources, enable/disable API) |
|
|
23
|
+
| **Diagnostics** | `diagnose_app`, `diagnose_server`, `find_issues` |
|
|
24
|
+
| **Batch Operations** | `restart_project_apps`, `bulk_env_update`, `stop_all_apps`, `redeploy_project` |
|
|
25
|
+
| **Servers** | `list_servers`, `get_server`, `validate_server`, `server_resources`, `server_domains` |
|
|
26
|
+
| **Projects** | `projects` (list, get, create, update, delete via action param) |
|
|
27
|
+
| **Environments** | `environments` (list, get, create, delete via action param) |
|
|
28
|
+
| **Applications** | `list_applications`, `get_application`, `application` (CRUD + delete_preview), `application_logs` |
|
|
29
|
+
| **Databases** | `list_databases`, `get_database`, `database` (create 8 types, delete), `database_backups` (CRUD schedules, executions incl. delete) |
|
|
30
|
+
| **Services** | `list_services`, `get_service`, `service` (create, update, delete) |
|
|
31
|
+
| **Control** | `control` (start/stop/restart for apps, databases, services) |
|
|
32
|
+
| **Env Vars** | `env_vars` (CRUD + bulk_update for application, service, and database env vars) |
|
|
33
|
+
| **Storages** | `storages` (list, create, update, delete persistent/file storages for apps, databases, services) |
|
|
34
|
+
| **Scheduled Tasks** | `scheduled_tasks` (list, create, update, delete, list_executions for apps and services) |
|
|
35
|
+
| **Deployments** | `list_deployments`, `deploy`, `deployment` (get, cancel, list_for_app) |
|
|
36
|
+
| **Private Keys** | `private_keys` (list, get, create, update, delete via action param) |
|
|
37
|
+
| **GitHub Apps** | `github_apps` (list, get, create, update, delete, list_repos, list_branches) |
|
|
38
|
+
| **Teams** | `teams` (list, get, get_members, get_current, get_current_members) |
|
|
39
|
+
| **Cloud Tokens** | `cloud_tokens` (Hetzner/DigitalOcean: list, get, create, update, delete, validate) |
|
|
40
|
+
| **Hetzner Cloud** | `hetzner` (list_locations, list_server_types, list_images, list_ssh_keys, create_server) |
|
|
41
|
+
| **Documentation** | `search_docs` (full-text search across Coolify docs) |
|
|
39
42
|
|
|
40
43
|
### Token-Optimized Design
|
|
41
44
|
|