@masonator/coolify-mcp 0.1.12 → 0.1.14

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.
@@ -8,10 +8,31 @@ export class CoolifyMcpServer {
8
8
  this.client = new CoolifyClient(config);
9
9
  this.server = new Server({
10
10
  name: 'coolify',
11
- version: '0.1.0',
11
+ version: '1.6.1',
12
12
  }, {
13
13
  capabilities: {
14
- tools: {},
14
+ tools: {
15
+ list_servers: true,
16
+ get_server: true,
17
+ get_server_resources: true,
18
+ get_server_domains: true,
19
+ validate_server: true,
20
+ list_projects: true,
21
+ get_project: true,
22
+ create_project: true,
23
+ update_project: true,
24
+ delete_project: true,
25
+ get_project_environment: true,
26
+ list_databases: true,
27
+ get_database: true,
28
+ update_database: true,
29
+ delete_database: true,
30
+ deploy_application: true,
31
+ list_services: true,
32
+ get_service: true,
33
+ create_service: true,
34
+ delete_service: true
35
+ },
15
36
  },
16
37
  });
17
38
  this.databaseResources = new DatabaseResources(this.client);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@masonator/coolify-mcp",
3
3
  "scope": "@masonator",
4
- "version": "0.1.12",
4
+ "version": "0.1.14",
5
5
  "description": "MCP server implementation for Coolify",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
@@ -41,6 +41,7 @@
41
41
  "author": "Stuart Mason",
42
42
  "license": "MIT",
43
43
  "dependencies": {
44
+ "@masonator/coolify-mcp": "^0.1.12",
44
45
  "@modelcontextprotocol/sdk": "^1.6.1",
45
46
  "@modelcontextprotocol/server-github": "^2025.1.23",
46
47
  "reflect-metadata": "^0.2.2",