@dokploy/mcp 0.29.7 → 0.29.9
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/build/generated/tools.js +153 -9
- package/package.json +1 -1
package/build/generated/tools.js
CHANGED
|
@@ -129,7 +129,7 @@ export const generatedTools = [
|
|
|
129
129
|
tag: "application",
|
|
130
130
|
method: "POST",
|
|
131
131
|
path: "/application.saveGithubProvider",
|
|
132
|
-
schema: z.object({ "applicationId": z.string(), "repository": z.union([z.string(), z.null()]), "owner": z.union([z.string(), z.null()]), "buildPath": z.union([z.string(), z.null()]), "githubId": z.union([z.string(), z.null()]), "branch": z.string().regex(new RegExp("^[a-zA-Z0-9._
|
|
132
|
+
schema: z.object({ "applicationId": z.string(), "repository": z.union([z.string(), z.null()]), "owner": z.union([z.string(), z.null()]), "buildPath": z.union([z.string(), z.null()]), "githubId": z.union([z.string(), z.null()]), "branch": z.string().regex(new RegExp("^[a-zA-Z0-9._\\-/#]+$")).min(1), "triggerType": z.enum(["push", "tag"]).default("push"), "enableSubmodules": z.boolean().optional(), "watchPaths": z.union([z.array(z.string()), z.null()]).optional() }),
|
|
133
133
|
annotations: {
|
|
134
134
|
title: "Application SaveGithubProvider",
|
|
135
135
|
...{ "idempotentHint": true, "openWorldHint": true },
|
|
@@ -141,7 +141,7 @@ export const generatedTools = [
|
|
|
141
141
|
tag: "application",
|
|
142
142
|
method: "POST",
|
|
143
143
|
path: "/application.saveGitlabProvider",
|
|
144
|
-
schema: z.object({ "applicationId": z.string(), "gitlabBuildPath": z.union([z.string(), z.null()]), "gitlabOwner": z.union([z.string(), z.null()]), "gitlabRepository": z.union([z.string(), z.null()]), "gitlabId": z.union([z.string(), z.null()]), "gitlabProjectId": z.union([z.number(), z.null()]), "gitlabPathNamespace": z.union([z.string(), z.null()]), "gitlabBranch": z.string().regex(new RegExp("^[a-zA-Z0-9._
|
|
144
|
+
schema: z.object({ "applicationId": z.string(), "gitlabBuildPath": z.union([z.string(), z.null()]), "gitlabOwner": z.union([z.string(), z.null()]), "gitlabRepository": z.union([z.string(), z.null()]), "gitlabId": z.union([z.string(), z.null()]), "gitlabProjectId": z.union([z.number(), z.null()]), "gitlabPathNamespace": z.union([z.string(), z.null()]), "gitlabBranch": z.string().regex(new RegExp("^[a-zA-Z0-9._\\-/#]+$")).min(1), "enableSubmodules": z.boolean().optional(), "watchPaths": z.union([z.array(z.string()), z.null()]).optional() }),
|
|
145
145
|
annotations: {
|
|
146
146
|
title: "Application SaveGitlabProvider",
|
|
147
147
|
...{ "idempotentHint": true, "openWorldHint": true },
|
|
@@ -153,7 +153,7 @@ export const generatedTools = [
|
|
|
153
153
|
tag: "application",
|
|
154
154
|
method: "POST",
|
|
155
155
|
path: "/application.saveBitbucketProvider",
|
|
156
|
-
schema: z.object({ "bitbucketBuildPath": z.union([z.string(), z.null()]), "bitbucketOwner": z.union([z.string(), z.null()]), "bitbucketRepository": z.union([z.string(), z.null()]), "bitbucketRepositorySlug": z.union([z.string(), z.null()]), "bitbucketId": z.union([z.string(), z.null()]), "applicationId": z.string(), "bitbucketBranch": z.string().regex(new RegExp("^[a-zA-Z0-9._
|
|
156
|
+
schema: z.object({ "bitbucketBuildPath": z.union([z.string(), z.null()]), "bitbucketOwner": z.union([z.string(), z.null()]), "bitbucketRepository": z.union([z.string(), z.null()]), "bitbucketRepositorySlug": z.union([z.string(), z.null()]), "bitbucketId": z.union([z.string(), z.null()]), "applicationId": z.string(), "bitbucketBranch": z.string().regex(new RegExp("^[a-zA-Z0-9._\\-/#]+$")).min(1), "enableSubmodules": z.boolean().optional(), "watchPaths": z.union([z.array(z.string()), z.null()]).optional() }),
|
|
157
157
|
annotations: {
|
|
158
158
|
title: "Application SaveBitbucketProvider",
|
|
159
159
|
...{ "idempotentHint": true, "openWorldHint": true },
|
|
@@ -165,7 +165,7 @@ export const generatedTools = [
|
|
|
165
165
|
tag: "application",
|
|
166
166
|
method: "POST",
|
|
167
167
|
path: "/application.saveGiteaProvider",
|
|
168
|
-
schema: z.object({ "applicationId": z.string(), "giteaBuildPath": z.union([z.string(), z.null()]), "giteaOwner": z.union([z.string(), z.null()]), "giteaRepository": z.union([z.string(), z.null()]), "giteaId": z.union([z.string(), z.null()]), "giteaBranch": z.string().regex(new RegExp("^[a-zA-Z0-9._
|
|
168
|
+
schema: z.object({ "applicationId": z.string(), "giteaBuildPath": z.union([z.string(), z.null()]), "giteaOwner": z.union([z.string(), z.null()]), "giteaRepository": z.union([z.string(), z.null()]), "giteaId": z.union([z.string(), z.null()]), "giteaBranch": z.string().regex(new RegExp("^[a-zA-Z0-9._\\-/#]+$")).min(1), "enableSubmodules": z.boolean().optional(), "watchPaths": z.union([z.array(z.string()), z.null()]).optional() }),
|
|
169
169
|
annotations: {
|
|
170
170
|
title: "Application SaveGiteaProvider",
|
|
171
171
|
...{ "idempotentHint": true, "openWorldHint": true },
|
|
@@ -189,7 +189,7 @@ export const generatedTools = [
|
|
|
189
189
|
tag: "application",
|
|
190
190
|
method: "POST",
|
|
191
191
|
path: "/application.saveGitProvider",
|
|
192
|
-
schema: z.object({ "applicationId": z.string(), "customGitBuildPath": z.union([z.string(), z.null()]), "customGitUrl": z.union([z.string(), z.null()]), "watchPaths": z.union([z.array(z.string()), z.null()]), "enableSubmodules": z.boolean().optional(), "customGitBranch": z.string().regex(new RegExp("^[a-zA-Z0-9._
|
|
192
|
+
schema: z.object({ "applicationId": z.string(), "customGitBuildPath": z.union([z.string(), z.null()]), "customGitUrl": z.union([z.string(), z.null()]), "watchPaths": z.union([z.array(z.string()), z.null()]), "enableSubmodules": z.boolean().optional(), "customGitBranch": z.string().regex(new RegExp("^[a-zA-Z0-9._\\-/#]+$")).min(1), "customGitSSHKeyId": z.union([z.string(), z.null()]).optional() }),
|
|
193
193
|
annotations: {
|
|
194
194
|
title: "Application SaveGitProvider",
|
|
195
195
|
...{ "idempotentHint": true, "openWorldHint": true },
|
|
@@ -1425,7 +1425,7 @@ export const generatedTools = [
|
|
|
1425
1425
|
tag: "domain",
|
|
1426
1426
|
method: "POST",
|
|
1427
1427
|
path: "/domain.create",
|
|
1428
|
-
schema: z.object({ "host": z.string().min(1), "path": z.union([z.string().min(1), z.null()]).optional(), "port": z.union([z.number().gte(1).lte(65535), z.null()]).optional(), "customEntrypoint": z.union([z.string(), z.null()]).optional(), "https": z.boolean().optional(), "applicationId": z.union([z.string(), z.null()]).optional(), "certificateType": z.enum(["letsencrypt", "none", "custom"]).optional(), "customCertResolver": z.union([z.string(), z.null()]).optional(), "composeId": z.union([z.string(), z.null()]).optional(), "serviceName": z.union([z.string(), z.null()]).optional(), "domainType": z.union([z.enum(["compose", "application", "preview"]), z.null()]).optional(), "previewDeploymentId": z.union([z.string(), z.null()]).optional(), "internalPath": z.union([z.string(), z.null()]).optional(), "stripPath": z.boolean().optional(), "middlewares": z.union([z.array(z.string()), z.null()]).optional() }),
|
|
1428
|
+
schema: z.object({ "host": z.string().min(1), "path": z.union([z.string().min(1), z.null()]).optional(), "port": z.union([z.number().gte(1).lte(65535), z.null()]).optional(), "customEntrypoint": z.union([z.string(), z.null()]).optional(), "https": z.boolean().optional(), "applicationId": z.union([z.string(), z.null()]).optional(), "certificateType": z.enum(["letsencrypt", "none", "custom"]).optional(), "customCertResolver": z.union([z.string(), z.null()]).optional(), "composeId": z.union([z.string(), z.null()]).optional(), "serviceName": z.union([z.string(), z.null()]).optional(), "domainType": z.union([z.enum(["compose", "application", "preview"]), z.null()]).optional(), "previewDeploymentId": z.union([z.string(), z.null()]).optional(), "internalPath": z.union([z.string(), z.null()]).optional(), "stripPath": z.boolean().optional(), "middlewares": z.union([z.array(z.string()), z.null()]).optional(), "forwardAuthEnabled": z.boolean().optional() }),
|
|
1429
1429
|
annotations: {
|
|
1430
1430
|
title: "Domain Create",
|
|
1431
1431
|
...{ "openWorldHint": true },
|
|
@@ -1485,7 +1485,7 @@ export const generatedTools = [
|
|
|
1485
1485
|
tag: "domain",
|
|
1486
1486
|
method: "POST",
|
|
1487
1487
|
path: "/domain.update",
|
|
1488
|
-
schema: z.object({ "host": z.string().min(1), "path": z.union([z.string().min(1), z.null()]).optional(), "port": z.union([z.number().gte(1).lte(65535), z.null()]).optional(), "customEntrypoint": z.union([z.string(), z.null()]).optional(), "https": z.boolean().optional(), "certificateType": z.enum(["letsencrypt", "none", "custom"]).optional(), "customCertResolver": z.union([z.string(), z.null()]).optional(), "serviceName": z.union([z.string(), z.null()]).optional(), "domainType": z.union([z.enum(["compose", "application", "preview"]), z.null()]).optional(), "internalPath": z.union([z.string(), z.null()]).optional(), "stripPath": z.boolean().optional(), "middlewares": z.union([z.array(z.string()), z.null()]).optional(), "domainId": z.string() }),
|
|
1488
|
+
schema: z.object({ "host": z.string().min(1), "path": z.union([z.string().min(1), z.null()]).optional(), "port": z.union([z.number().gte(1).lte(65535), z.null()]).optional(), "customEntrypoint": z.union([z.string(), z.null()]).optional(), "https": z.boolean().optional(), "certificateType": z.enum(["letsencrypt", "none", "custom"]).optional(), "customCertResolver": z.union([z.string(), z.null()]).optional(), "serviceName": z.union([z.string(), z.null()]).optional(), "domainType": z.union([z.enum(["compose", "application", "preview"]), z.null()]).optional(), "internalPath": z.union([z.string(), z.null()]).optional(), "stripPath": z.boolean().optional(), "middlewares": z.union([z.array(z.string()), z.null()]).optional(), "forwardAuthEnabled": z.boolean().optional(), "domainId": z.string() }),
|
|
1489
1489
|
annotations: {
|
|
1490
1490
|
title: "Domain Update",
|
|
1491
1491
|
...{ "idempotentHint": true, "openWorldHint": true },
|
|
@@ -3909,7 +3909,7 @@ export const generatedTools = [
|
|
|
3909
3909
|
tag: "server",
|
|
3910
3910
|
method: "POST",
|
|
3911
3911
|
path: "/server.create",
|
|
3912
|
-
schema: z.object({ "name": z.string().min(1), "description": z.union([z.string(), z.null()]), "ipAddress": z.string(), "port": z.number(), "username": z.string(), "sshKeyId": z.union([z.string(), z.null()]), "serverType": z.enum(["deploy", "build"]) }),
|
|
3912
|
+
schema: z.object({ "name": z.string().min(1), "description": z.union([z.string(), z.null()]), "ipAddress": z.string(), "port": z.number(), "username": z.string(), "sshKeyId": z.union([z.string(), z.null()]), "serverType": z.enum(["deploy", "build"]), "enableDockerCleanup": z.boolean().default(true) }),
|
|
3913
3913
|
annotations: {
|
|
3914
3914
|
title: "Server Create",
|
|
3915
3915
|
...{ "openWorldHint": true },
|
|
@@ -4065,12 +4065,24 @@ export const generatedTools = [
|
|
|
4065
4065
|
tag: "server",
|
|
4066
4066
|
method: "POST",
|
|
4067
4067
|
path: "/server.update",
|
|
4068
|
-
schema: z.object({ "name": z.string().min(1), "description": z.union([z.string(), z.null()]), "serverId": z.string().min(1), "ipAddress": z.string(), "port": z.number(), "username": z.string(), "sshKeyId": z.union([z.string(), z.null()]), "serverType": z.enum(["deploy", "build"]), "command": z.string().optional() }),
|
|
4068
|
+
schema: z.object({ "name": z.string().min(1), "description": z.union([z.string(), z.null()]), "serverId": z.string().min(1), "ipAddress": z.string(), "port": z.number(), "username": z.string(), "sshKeyId": z.union([z.string(), z.null()]), "serverType": z.enum(["deploy", "build"]), "enableDockerCleanup": z.boolean().default(true), "command": z.string().optional() }),
|
|
4069
4069
|
annotations: {
|
|
4070
4070
|
title: "Server Update",
|
|
4071
4071
|
...{ "idempotentHint": true, "openWorldHint": true },
|
|
4072
4072
|
},
|
|
4073
4073
|
},
|
|
4074
|
+
{
|
|
4075
|
+
name: "server-updateBuildsConcurrency",
|
|
4076
|
+
description: "POST /server.updateBuildsConcurrency",
|
|
4077
|
+
tag: "server",
|
|
4078
|
+
method: "POST",
|
|
4079
|
+
path: "/server.updateBuildsConcurrency",
|
|
4080
|
+
schema: z.object({ "serverId": z.string().min(1), "buildsConcurrency": z.number().int().gte(1).lte(100) }),
|
|
4081
|
+
annotations: {
|
|
4082
|
+
title: "Server UpdateBuildsConcurrency",
|
|
4083
|
+
...{ "idempotentHint": true, "openWorldHint": true },
|
|
4084
|
+
},
|
|
4085
|
+
},
|
|
4074
4086
|
{
|
|
4075
4087
|
name: "server-publicIp",
|
|
4076
4088
|
description: "GET /server.publicIp",
|
|
@@ -4347,6 +4359,18 @@ export const generatedTools = [
|
|
|
4347
4359
|
...{ "idempotentHint": true, "openWorldHint": true },
|
|
4348
4360
|
},
|
|
4349
4361
|
},
|
|
4362
|
+
{
|
|
4363
|
+
name: "settings-updateBuildsConcurrency",
|
|
4364
|
+
description: "POST /settings.updateBuildsConcurrency",
|
|
4365
|
+
tag: "settings",
|
|
4366
|
+
method: "POST",
|
|
4367
|
+
path: "/settings.updateBuildsConcurrency",
|
|
4368
|
+
schema: z.object({ "buildsConcurrency": z.number().int().gte(1).lte(100) }),
|
|
4369
|
+
annotations: {
|
|
4370
|
+
title: "Settings UpdateBuildsConcurrency",
|
|
4371
|
+
...{ "idempotentHint": true, "openWorldHint": true },
|
|
4372
|
+
},
|
|
4373
|
+
},
|
|
4350
4374
|
{
|
|
4351
4375
|
name: "settings-updateEnforceSSO",
|
|
4352
4376
|
description: "POST /settings.updateEnforceSSO",
|
|
@@ -5727,6 +5751,126 @@ export const generatedTools = [
|
|
|
5727
5751
|
...{ "idempotentHint": true, "openWorldHint": true },
|
|
5728
5752
|
},
|
|
5729
5753
|
},
|
|
5754
|
+
{
|
|
5755
|
+
name: "forwardAuth-getAuthDomain",
|
|
5756
|
+
description: "GET /forwardAuth.getAuthDomain",
|
|
5757
|
+
tag: "forwardAuth",
|
|
5758
|
+
method: "GET",
|
|
5759
|
+
path: "/forwardAuth.getAuthDomain",
|
|
5760
|
+
schema: z.object({ "serverId": z.union([z.string(), z.null()]) }),
|
|
5761
|
+
annotations: {
|
|
5762
|
+
title: "ForwardAuth GetAuthDomain",
|
|
5763
|
+
...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
|
|
5764
|
+
},
|
|
5765
|
+
},
|
|
5766
|
+
{
|
|
5767
|
+
name: "forwardAuth-setAuthDomain",
|
|
5768
|
+
description: "POST /forwardAuth.setAuthDomain",
|
|
5769
|
+
tag: "forwardAuth",
|
|
5770
|
+
method: "POST",
|
|
5771
|
+
path: "/forwardAuth.setAuthDomain",
|
|
5772
|
+
schema: z.object({ "serverId": z.union([z.string(), z.null()]), "authDomain": z.string(), "https": z.boolean().default(true), "certificateType": z.enum(["none", "letsencrypt", "custom"]).default("letsencrypt"), "customCertResolver": z.string().optional() }),
|
|
5773
|
+
annotations: {
|
|
5774
|
+
title: "ForwardAuth SetAuthDomain",
|
|
5775
|
+
...{ "idempotentHint": true, "openWorldHint": true },
|
|
5776
|
+
},
|
|
5777
|
+
},
|
|
5778
|
+
{
|
|
5779
|
+
name: "forwardAuth-removeAuthDomain",
|
|
5780
|
+
description: "POST /forwardAuth.removeAuthDomain",
|
|
5781
|
+
tag: "forwardAuth",
|
|
5782
|
+
method: "POST",
|
|
5783
|
+
path: "/forwardAuth.removeAuthDomain",
|
|
5784
|
+
schema: z.object({ "serverId": z.union([z.string(), z.null()]) }),
|
|
5785
|
+
annotations: {
|
|
5786
|
+
title: "ForwardAuth RemoveAuthDomain",
|
|
5787
|
+
...{ "destructiveHint": true, "openWorldHint": true },
|
|
5788
|
+
},
|
|
5789
|
+
},
|
|
5790
|
+
{
|
|
5791
|
+
name: "forwardAuth-listProviders",
|
|
5792
|
+
description: "GET /forwardAuth.listProviders",
|
|
5793
|
+
tag: "forwardAuth",
|
|
5794
|
+
method: "GET",
|
|
5795
|
+
path: "/forwardAuth.listProviders",
|
|
5796
|
+
schema: z.object({}),
|
|
5797
|
+
annotations: {
|
|
5798
|
+
title: "ForwardAuth ListProviders",
|
|
5799
|
+
...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
|
|
5800
|
+
},
|
|
5801
|
+
},
|
|
5802
|
+
{
|
|
5803
|
+
name: "forwardAuth-serverStatus",
|
|
5804
|
+
description: "GET /forwardAuth.serverStatus",
|
|
5805
|
+
tag: "forwardAuth",
|
|
5806
|
+
method: "GET",
|
|
5807
|
+
path: "/forwardAuth.serverStatus",
|
|
5808
|
+
schema: z.object({}),
|
|
5809
|
+
annotations: {
|
|
5810
|
+
title: "ForwardAuth ServerStatus",
|
|
5811
|
+
...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
|
|
5812
|
+
},
|
|
5813
|
+
},
|
|
5814
|
+
{
|
|
5815
|
+
name: "forwardAuth-deployOnServer",
|
|
5816
|
+
description: "POST /forwardAuth.deployOnServer",
|
|
5817
|
+
tag: "forwardAuth",
|
|
5818
|
+
method: "POST",
|
|
5819
|
+
path: "/forwardAuth.deployOnServer",
|
|
5820
|
+
schema: z.object({ "serverId": z.union([z.string(), z.null()]), "providerId": z.string().min(1) }),
|
|
5821
|
+
annotations: {
|
|
5822
|
+
title: "ForwardAuth DeployOnServer",
|
|
5823
|
+
...{ "idempotentHint": true, "openWorldHint": true },
|
|
5824
|
+
},
|
|
5825
|
+
},
|
|
5826
|
+
{
|
|
5827
|
+
name: "forwardAuth-removeOnServer",
|
|
5828
|
+
description: "POST /forwardAuth.removeOnServer",
|
|
5829
|
+
tag: "forwardAuth",
|
|
5830
|
+
method: "POST",
|
|
5831
|
+
path: "/forwardAuth.removeOnServer",
|
|
5832
|
+
schema: z.object({ "serverId": z.union([z.string(), z.null()]) }),
|
|
5833
|
+
annotations: {
|
|
5834
|
+
title: "ForwardAuth RemoveOnServer",
|
|
5835
|
+
...{ "destructiveHint": true, "openWorldHint": true },
|
|
5836
|
+
},
|
|
5837
|
+
},
|
|
5838
|
+
{
|
|
5839
|
+
name: "forwardAuth-status",
|
|
5840
|
+
description: "GET /forwardAuth.status",
|
|
5841
|
+
tag: "forwardAuth",
|
|
5842
|
+
method: "GET",
|
|
5843
|
+
path: "/forwardAuth.status",
|
|
5844
|
+
schema: z.object({ "domainId": z.string().min(1) }),
|
|
5845
|
+
annotations: {
|
|
5846
|
+
title: "ForwardAuth Status",
|
|
5847
|
+
...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
|
|
5848
|
+
},
|
|
5849
|
+
},
|
|
5850
|
+
{
|
|
5851
|
+
name: "forwardAuth-enable",
|
|
5852
|
+
description: "POST /forwardAuth.enable",
|
|
5853
|
+
tag: "forwardAuth",
|
|
5854
|
+
method: "POST",
|
|
5855
|
+
path: "/forwardAuth.enable",
|
|
5856
|
+
schema: z.object({ "domainId": z.string().min(1) }),
|
|
5857
|
+
annotations: {
|
|
5858
|
+
title: "ForwardAuth Enable",
|
|
5859
|
+
...{ "idempotentHint": true, "openWorldHint": true },
|
|
5860
|
+
},
|
|
5861
|
+
},
|
|
5862
|
+
{
|
|
5863
|
+
name: "forwardAuth-disable",
|
|
5864
|
+
description: "POST /forwardAuth.disable",
|
|
5865
|
+
tag: "forwardAuth",
|
|
5866
|
+
method: "POST",
|
|
5867
|
+
path: "/forwardAuth.disable",
|
|
5868
|
+
schema: z.object({ "domainId": z.string().min(1) }),
|
|
5869
|
+
annotations: {
|
|
5870
|
+
title: "ForwardAuth Disable",
|
|
5871
|
+
...{ "idempotentHint": true, "openWorldHint": true },
|
|
5872
|
+
},
|
|
5873
|
+
},
|
|
5730
5874
|
{
|
|
5731
5875
|
name: "whitelabeling-get",
|
|
5732
5876
|
description: "GET /whitelabeling.get",
|