@dokploy/mcp 0.29.7 → 0.29.8
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 +124 -4
- package/package.json +1 -1
package/build/generated/tools.js
CHANGED
|
@@ -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,7 +4065,7 @@ 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 },
|
|
@@ -5727,6 +5727,126 @@ export const generatedTools = [
|
|
|
5727
5727
|
...{ "idempotentHint": true, "openWorldHint": true },
|
|
5728
5728
|
},
|
|
5729
5729
|
},
|
|
5730
|
+
{
|
|
5731
|
+
name: "forwardAuth-getAuthDomain",
|
|
5732
|
+
description: "GET /forwardAuth.getAuthDomain",
|
|
5733
|
+
tag: "forwardAuth",
|
|
5734
|
+
method: "GET",
|
|
5735
|
+
path: "/forwardAuth.getAuthDomain",
|
|
5736
|
+
schema: z.object({ "serverId": z.union([z.string(), z.null()]) }),
|
|
5737
|
+
annotations: {
|
|
5738
|
+
title: "ForwardAuth GetAuthDomain",
|
|
5739
|
+
...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
|
|
5740
|
+
},
|
|
5741
|
+
},
|
|
5742
|
+
{
|
|
5743
|
+
name: "forwardAuth-setAuthDomain",
|
|
5744
|
+
description: "POST /forwardAuth.setAuthDomain",
|
|
5745
|
+
tag: "forwardAuth",
|
|
5746
|
+
method: "POST",
|
|
5747
|
+
path: "/forwardAuth.setAuthDomain",
|
|
5748
|
+
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() }),
|
|
5749
|
+
annotations: {
|
|
5750
|
+
title: "ForwardAuth SetAuthDomain",
|
|
5751
|
+
...{ "idempotentHint": true, "openWorldHint": true },
|
|
5752
|
+
},
|
|
5753
|
+
},
|
|
5754
|
+
{
|
|
5755
|
+
name: "forwardAuth-removeAuthDomain",
|
|
5756
|
+
description: "POST /forwardAuth.removeAuthDomain",
|
|
5757
|
+
tag: "forwardAuth",
|
|
5758
|
+
method: "POST",
|
|
5759
|
+
path: "/forwardAuth.removeAuthDomain",
|
|
5760
|
+
schema: z.object({ "serverId": z.union([z.string(), z.null()]) }),
|
|
5761
|
+
annotations: {
|
|
5762
|
+
title: "ForwardAuth RemoveAuthDomain",
|
|
5763
|
+
...{ "destructiveHint": true, "openWorldHint": true },
|
|
5764
|
+
},
|
|
5765
|
+
},
|
|
5766
|
+
{
|
|
5767
|
+
name: "forwardAuth-listProviders",
|
|
5768
|
+
description: "GET /forwardAuth.listProviders",
|
|
5769
|
+
tag: "forwardAuth",
|
|
5770
|
+
method: "GET",
|
|
5771
|
+
path: "/forwardAuth.listProviders",
|
|
5772
|
+
schema: z.object({}),
|
|
5773
|
+
annotations: {
|
|
5774
|
+
title: "ForwardAuth ListProviders",
|
|
5775
|
+
...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
|
|
5776
|
+
},
|
|
5777
|
+
},
|
|
5778
|
+
{
|
|
5779
|
+
name: "forwardAuth-serverStatus",
|
|
5780
|
+
description: "GET /forwardAuth.serverStatus",
|
|
5781
|
+
tag: "forwardAuth",
|
|
5782
|
+
method: "GET",
|
|
5783
|
+
path: "/forwardAuth.serverStatus",
|
|
5784
|
+
schema: z.object({}),
|
|
5785
|
+
annotations: {
|
|
5786
|
+
title: "ForwardAuth ServerStatus",
|
|
5787
|
+
...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
|
|
5788
|
+
},
|
|
5789
|
+
},
|
|
5790
|
+
{
|
|
5791
|
+
name: "forwardAuth-deployOnServer",
|
|
5792
|
+
description: "POST /forwardAuth.deployOnServer",
|
|
5793
|
+
tag: "forwardAuth",
|
|
5794
|
+
method: "POST",
|
|
5795
|
+
path: "/forwardAuth.deployOnServer",
|
|
5796
|
+
schema: z.object({ "serverId": z.union([z.string(), z.null()]), "providerId": z.string().min(1) }),
|
|
5797
|
+
annotations: {
|
|
5798
|
+
title: "ForwardAuth DeployOnServer",
|
|
5799
|
+
...{ "idempotentHint": true, "openWorldHint": true },
|
|
5800
|
+
},
|
|
5801
|
+
},
|
|
5802
|
+
{
|
|
5803
|
+
name: "forwardAuth-removeOnServer",
|
|
5804
|
+
description: "POST /forwardAuth.removeOnServer",
|
|
5805
|
+
tag: "forwardAuth",
|
|
5806
|
+
method: "POST",
|
|
5807
|
+
path: "/forwardAuth.removeOnServer",
|
|
5808
|
+
schema: z.object({ "serverId": z.union([z.string(), z.null()]) }),
|
|
5809
|
+
annotations: {
|
|
5810
|
+
title: "ForwardAuth RemoveOnServer",
|
|
5811
|
+
...{ "destructiveHint": true, "openWorldHint": true },
|
|
5812
|
+
},
|
|
5813
|
+
},
|
|
5814
|
+
{
|
|
5815
|
+
name: "forwardAuth-status",
|
|
5816
|
+
description: "GET /forwardAuth.status",
|
|
5817
|
+
tag: "forwardAuth",
|
|
5818
|
+
method: "GET",
|
|
5819
|
+
path: "/forwardAuth.status",
|
|
5820
|
+
schema: z.object({ "domainId": z.string().min(1) }),
|
|
5821
|
+
annotations: {
|
|
5822
|
+
title: "ForwardAuth Status",
|
|
5823
|
+
...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
|
|
5824
|
+
},
|
|
5825
|
+
},
|
|
5826
|
+
{
|
|
5827
|
+
name: "forwardAuth-enable",
|
|
5828
|
+
description: "POST /forwardAuth.enable",
|
|
5829
|
+
tag: "forwardAuth",
|
|
5830
|
+
method: "POST",
|
|
5831
|
+
path: "/forwardAuth.enable",
|
|
5832
|
+
schema: z.object({ "domainId": z.string().min(1) }),
|
|
5833
|
+
annotations: {
|
|
5834
|
+
title: "ForwardAuth Enable",
|
|
5835
|
+
...{ "idempotentHint": true, "openWorldHint": true },
|
|
5836
|
+
},
|
|
5837
|
+
},
|
|
5838
|
+
{
|
|
5839
|
+
name: "forwardAuth-disable",
|
|
5840
|
+
description: "POST /forwardAuth.disable",
|
|
5841
|
+
tag: "forwardAuth",
|
|
5842
|
+
method: "POST",
|
|
5843
|
+
path: "/forwardAuth.disable",
|
|
5844
|
+
schema: z.object({ "domainId": z.string().min(1) }),
|
|
5845
|
+
annotations: {
|
|
5846
|
+
title: "ForwardAuth Disable",
|
|
5847
|
+
...{ "idempotentHint": true, "openWorldHint": true },
|
|
5848
|
+
},
|
|
5849
|
+
},
|
|
5730
5850
|
{
|
|
5731
5851
|
name: "whitelabeling-get",
|
|
5732
5852
|
description: "GET /whitelabeling.get",
|