@digitalocean/mcp 1.0.10 → 1.0.11

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.
@@ -0,0 +1,151 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "properties": {
4
+ "name": {
5
+ "type": "string"
6
+ },
7
+ "region": {
8
+ "type": "string"
9
+ },
10
+ "version": {
11
+ "type": "string"
12
+ },
13
+ "tags": {
14
+ "items": {
15
+ "type": "string"
16
+ },
17
+ "type": "array"
18
+ },
19
+ "vpc_uuid": {
20
+ "type": "string"
21
+ },
22
+ "cluster_subnet": {
23
+ "type": "string"
24
+ },
25
+ "service_subnet": {
26
+ "type": "string"
27
+ },
28
+ "ha": {
29
+ "type": "boolean"
30
+ },
31
+ "node_pools": {
32
+ "items": {
33
+ "properties": {
34
+ "name": {
35
+ "type": "string"
36
+ },
37
+ "size": {
38
+ "type": "string"
39
+ },
40
+ "count": {
41
+ "type": "integer"
42
+ },
43
+ "tags": {
44
+ "items": {
45
+ "type": "string"
46
+ },
47
+ "type": "array"
48
+ },
49
+ "labels": {
50
+ "additionalProperties": {
51
+ "type": "string"
52
+ },
53
+ "type": "object"
54
+ },
55
+ "taints": {
56
+ "items": {
57
+ "properties": {
58
+ "Key": {
59
+ "type": "string"
60
+ },
61
+ "Value": {
62
+ "type": "string"
63
+ },
64
+ "Effect": {
65
+ "type": "string"
66
+ }
67
+ },
68
+ "type": "object"
69
+ },
70
+ "type": "array",
71
+ "minItems": 1
72
+ },
73
+ "auto_scale": {
74
+ "type": "boolean"
75
+ },
76
+ "min_nodes": {
77
+ "type": "integer"
78
+ },
79
+ "max_nodes": {
80
+ "type": "integer"
81
+ }
82
+ },
83
+ "type": "object"
84
+ },
85
+ "type": "array",
86
+ "minItems": 1
87
+ },
88
+ "maintenance_policy": {
89
+ "properties": {
90
+ "start_time": {
91
+ "type": "string"
92
+ },
93
+ "duration": {
94
+ "type": "string"
95
+ },
96
+ "day": {
97
+ "type": "integer"
98
+ }
99
+ },
100
+ "type": "object"
101
+ },
102
+ "auto_upgrade": {
103
+ "type": "boolean"
104
+ },
105
+ "surge_upgrade": {
106
+ "type": "boolean"
107
+ },
108
+ "control_plane_firewall": {
109
+ "properties": {
110
+ "enabled": {
111
+ "type": "boolean"
112
+ },
113
+ "allowed_addresses": {
114
+ "items": {
115
+ "type": "string"
116
+ },
117
+ "type": "array",
118
+ "minItems": 1
119
+ }
120
+ },
121
+ "type": "object"
122
+ },
123
+ "cluster_autoscaler_configuration": {
124
+ "properties": {
125
+ "scale_down_utilization_threshold": {
126
+ "type": "number"
127
+ },
128
+ "scale_down_unneeded_time": {
129
+ "type": "string"
130
+ },
131
+ "expanders": {
132
+ "items": {
133
+ "type": "string"
134
+ },
135
+ "type": "array",
136
+ "minItems": 1
137
+ }
138
+ },
139
+ "type": "object"
140
+ },
141
+ "routing_agent": {
142
+ "properties": {
143
+ "enabled": {
144
+ "type": "boolean"
145
+ }
146
+ },
147
+ "type": "object"
148
+ }
149
+ },
150
+ "type": "object"
151
+ }
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,82 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$defs": {
4
+ "KubernetesNodePoolCreateRequest": {
5
+ "properties": {
6
+ "name": {
7
+ "type": "string"
8
+ },
9
+ "size": {
10
+ "type": "string"
11
+ },
12
+ "count": {
13
+ "type": "integer"
14
+ },
15
+ "tags": {
16
+ "items": {
17
+ "type": "string"
18
+ },
19
+ "type": "array"
20
+ },
21
+ "labels": {
22
+ "additionalProperties": {
23
+ "type": "string"
24
+ },
25
+ "type": "object"
26
+ },
27
+ "taints": {
28
+ "items": {
29
+ "$ref": "#/$defs/Taint"
30
+ },
31
+ "type": "array",
32
+ "minItems": 1
33
+ },
34
+ "auto_scale": {
35
+ "type": "boolean"
36
+ },
37
+ "min_nodes": {
38
+ "type": "integer"
39
+ },
40
+ "max_nodes": {
41
+ "type": "integer"
42
+ }
43
+ },
44
+ "additionalProperties": false,
45
+ "type": "object"
46
+ },
47
+ "Taint": {
48
+ "properties": {
49
+ "Key": {
50
+ "type": "string"
51
+ },
52
+ "Value": {
53
+ "type": "string"
54
+ },
55
+ "Effect": {
56
+ "type": "string"
57
+ }
58
+ },
59
+ "additionalProperties": false,
60
+ "type": "object",
61
+ "required": [
62
+ "Key",
63
+ "Value",
64
+ "Effect"
65
+ ]
66
+ }
67
+ },
68
+ "properties": {
69
+ "cluster_id": {
70
+ "type": "string"
71
+ },
72
+ "node_pool_create_request": {
73
+ "$ref": "#/$defs/KubernetesNodePoolCreateRequest"
74
+ }
75
+ },
76
+ "additionalProperties": false,
77
+ "type": "object",
78
+ "required": [
79
+ "cluster_id",
80
+ "node_pool_create_request"
81
+ ]
82
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitalocean/mcp",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "DigitalOcean MCP Implementation,",
5
5
  "author": "DigitalOcean",
6
6
  "homepage": "https://github.com/digitalocean-labs/mcp-digitalocean?tab=readme-ov-file#mcp-digitalocean-integration",