@dokploy/mcp 0.29.0 → 0.29.2

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.
@@ -1,5 +1,5 @@
1
1
  // AUTO-GENERATED FILE — DO NOT EDIT MANUALLY
2
- // Generated from openapi.json on 2026-04-17
2
+ // Generated from openapi.json on 2026-04-25
3
3
  // Run `pnpm generate` to regenerate
4
4
  import { z } from "zod";
5
5
  export const generatedTools = [
@@ -1269,12 +1269,48 @@ export const generatedTools = [
1269
1269
  tag: "docker",
1270
1270
  method: "POST",
1271
1271
  path: "/docker.restartContainer",
1272
- schema: z.object({ "containerId": z.string().regex(new RegExp("^[a-zA-Z0-9.\\-_]+$")).min(1) }),
1272
+ schema: z.object({ "containerId": z.string().regex(new RegExp("^[a-zA-Z0-9.\\-_]+$")).min(1), "serverId": z.string().optional() }),
1273
1273
  annotations: {
1274
1274
  title: "Docker RestartContainer",
1275
1275
  ...{ "idempotentHint": true, "openWorldHint": true },
1276
1276
  },
1277
1277
  },
1278
+ {
1279
+ name: "docker-startContainer",
1280
+ description: "POST /docker.startContainer",
1281
+ tag: "docker",
1282
+ method: "POST",
1283
+ path: "/docker.startContainer",
1284
+ schema: z.object({ "containerId": z.string().regex(new RegExp("^[a-zA-Z0-9.\\-_]+$")).min(1), "serverId": z.string().optional() }),
1285
+ annotations: {
1286
+ title: "Docker StartContainer",
1287
+ ...{ "idempotentHint": true, "openWorldHint": true },
1288
+ },
1289
+ },
1290
+ {
1291
+ name: "docker-stopContainer",
1292
+ description: "POST /docker.stopContainer",
1293
+ tag: "docker",
1294
+ method: "POST",
1295
+ path: "/docker.stopContainer",
1296
+ schema: z.object({ "containerId": z.string().regex(new RegExp("^[a-zA-Z0-9.\\-_]+$")).min(1), "serverId": z.string().optional() }),
1297
+ annotations: {
1298
+ title: "Docker StopContainer",
1299
+ ...{ "idempotentHint": true, "openWorldHint": true },
1300
+ },
1301
+ },
1302
+ {
1303
+ name: "docker-killContainer",
1304
+ description: "POST /docker.killContainer",
1305
+ tag: "docker",
1306
+ method: "POST",
1307
+ path: "/docker.killContainer",
1308
+ schema: z.object({ "containerId": z.string().regex(new RegExp("^[a-zA-Z0-9.\\-_]+$")).min(1), "serverId": z.string().optional() }),
1309
+ annotations: {
1310
+ title: "Docker KillContainer",
1311
+ ...{ "idempotentHint": true, "openWorldHint": true },
1312
+ },
1313
+ },
1278
1314
  {
1279
1315
  name: "docker-removeContainer",
1280
1316
  description: "POST /docker.removeContainer",
@@ -3411,6 +3447,18 @@ export const generatedTools = [
3411
3447
  ...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
3412
3448
  },
3413
3449
  },
3450
+ {
3451
+ name: "project-homeStats",
3452
+ description: "GET /project.homeStats",
3453
+ tag: "project",
3454
+ method: "GET",
3455
+ path: "/project.homeStats",
3456
+ schema: z.object({}),
3457
+ annotations: {
3458
+ title: "Project HomeStats",
3459
+ ...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
3460
+ },
3461
+ },
3414
3462
  {
3415
3463
  name: "project-search",
3416
3464
  description: "GET /project.search",
@@ -4803,6 +4851,18 @@ export const generatedTools = [
4803
4851
  ...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
4804
4852
  },
4805
4853
  },
4854
+ {
4855
+ name: "stripe-updateInvoiceNotifications",
4856
+ description: "POST /stripe.updateInvoiceNotifications",
4857
+ tag: "stripe",
4858
+ method: "POST",
4859
+ path: "/stripe.updateInvoiceNotifications",
4860
+ schema: z.object({ "enabled": z.boolean() }),
4861
+ annotations: {
4862
+ title: "Stripe UpdateInvoiceNotifications",
4863
+ ...{ "idempotentHint": true, "openWorldHint": true },
4864
+ },
4865
+ },
4806
4866
  {
4807
4867
  name: "stripe-getInvoices",
4808
4868
  description: "GET /stripe.getInvoices",
@@ -4965,7 +5025,7 @@ export const generatedTools = [
4965
5025
  tag: "user",
4966
5026
  method: "POST",
4967
5027
  path: "/user.update",
4968
- schema: z.object({ "id": z.string().min(1).optional(), "firstName": z.string().optional(), "lastName": z.string().optional(), "isRegistered": z.boolean().optional(), "expirationDate": z.string().optional(), "createdAt2": z.string().optional(), "createdAt": z.union([z.string(), z.null()]).optional(), "twoFactorEnabled": z.union([z.boolean(), z.null()]).optional(), "email": z.string().email().regex(new RegExp("^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$")).min(1).optional(), "emailVerified": z.boolean().optional(), "image": z.union([z.string(), z.null()]).optional(), "banned": z.union([z.boolean(), z.null()]).optional(), "banReason": z.union([z.string(), z.null()]).optional(), "banExpires": z.union([z.string(), z.null()]).optional(), "updatedAt": z.string().optional(), "enablePaidFeatures": z.boolean().optional(), "allowImpersonation": z.boolean().optional(), "enableEnterpriseFeatures": z.boolean().optional(), "licenseKey": z.union([z.string(), z.null()]).optional(), "stripeCustomerId": z.union([z.string(), z.null()]).optional(), "stripeSubscriptionId": z.union([z.string(), z.null()]).optional(), "serversQuantity": z.number().optional(), "password": z.string().optional(), "currentPassword": z.string().optional() }),
5028
+ schema: z.object({ "id": z.string().min(1).optional(), "firstName": z.string().optional(), "lastName": z.string().optional(), "isRegistered": z.boolean().optional(), "expirationDate": z.string().optional(), "createdAt2": z.string().optional(), "createdAt": z.union([z.string(), z.null()]).optional(), "twoFactorEnabled": z.union([z.boolean(), z.null()]).optional(), "email": z.string().email().regex(new RegExp("^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$")).min(1).optional(), "emailVerified": z.boolean().optional(), "image": z.union([z.string(), z.null()]).optional(), "banned": z.union([z.boolean(), z.null()]).optional(), "banReason": z.union([z.string(), z.null()]).optional(), "banExpires": z.union([z.string(), z.null()]).optional(), "updatedAt": z.string().optional(), "enablePaidFeatures": z.boolean().optional(), "allowImpersonation": z.boolean().optional(), "enableEnterpriseFeatures": z.boolean().optional(), "licenseKey": z.union([z.string(), z.null()]).optional(), "stripeCustomerId": z.union([z.string(), z.null()]).optional(), "stripeSubscriptionId": z.union([z.string(), z.null()]).optional(), "serversQuantity": z.number().optional(), "sendInvoiceNotifications": z.boolean().optional(), "password": z.string().optional(), "currentPassword": z.string().optional() }),
4969
5029
  annotations: {
4970
5030
  title: "User Update",
4971
5031
  ...{ "idempotentHint": true, "openWorldHint": true },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dokploy/mcp",
3
- "version": "v0.29.0",
3
+ "version": "0.29.2",
4
4
  "description": "MCP Server for Dokploy API",
5
5
  "main": "build/index.js",
6
6
  "bin": {