@dokploy/mcp 0.29.12 → 0.29.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.
@@ -5205,7 +5205,7 @@ export const generatedTools = [
5205
5205
  tag: "user",
5206
5206
  method: "POST",
5207
5207
  path: "/user.createApiKey",
5208
- schema: z.object({ "name": z.string().min(1), "prefix": z.string().optional(), "expiresIn": z.number().optional(), "metadata": z.object({ "organizationId": z.string() }), "rateLimitEnabled": z.boolean().optional(), "rateLimitTimeWindow": z.number().optional(), "rateLimitMax": z.number().optional(), "remaining": z.number().optional(), "refillAmount": z.number().optional(), "refillInterval": z.number().optional() }),
5208
+ schema: z.object({ "name": z.string().min(1).max(32), "prefix": z.string().optional(), "expiresIn": z.number().optional(), "metadata": z.object({ "organizationId": z.string() }), "rateLimitEnabled": z.boolean().optional(), "rateLimitTimeWindow": z.number().optional(), "rateLimitMax": z.number().optional(), "remaining": z.number().optional(), "refillAmount": z.number().optional(), "refillInterval": z.number().optional() }),
5209
5209
  annotations: {
5210
5210
  title: "User CreateApiKey",
5211
5211
  ...{ "openWorldHint": true },
@@ -5355,6 +5355,30 @@ export const generatedTools = [
5355
5355
  ...{ "destructiveHint": true, "openWorldHint": true },
5356
5356
  },
5357
5357
  },
5358
+ {
5359
+ name: "ai-getCustomProviders",
5360
+ description: "GET /ai.getCustomProviders",
5361
+ tag: "ai",
5362
+ method: "GET",
5363
+ path: "/ai.getCustomProviders",
5364
+ schema: z.object({}),
5365
+ annotations: {
5366
+ title: "Ai GetCustomProviders",
5367
+ ...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
5368
+ },
5369
+ },
5370
+ {
5371
+ name: "ai-saveCustomProviders",
5372
+ description: "POST /ai.saveCustomProviders",
5373
+ tag: "ai",
5374
+ method: "POST",
5375
+ path: "/ai.saveCustomProviders",
5376
+ schema: z.object({ "providers": z.array(z.object({ "name": z.string().min(1), "apiUrl": z.string().url() })) }),
5377
+ annotations: {
5378
+ title: "Ai SaveCustomProviders",
5379
+ ...{ "idempotentHint": true, "openWorldHint": true },
5380
+ },
5381
+ },
5358
5382
  {
5359
5383
  name: "ai-getEnabledProviders",
5360
5384
  description: "GET /ai.getEnabledProviders",
@@ -6153,7 +6177,7 @@ export const generatedTools = [
6153
6177
  tag: "volumeBackups",
6154
6178
  method: "POST",
6155
6179
  path: "/volumeBackups.create",
6156
- schema: z.object({ "name": z.string(), "volumeName": z.string(), "prefix": z.string(), "serviceType": z.enum(["application", "postgres", "mysql", "mariadb", "mongo", "redis", "compose", "libsql"]).optional(), "appName": z.string().optional(), "serviceName": z.union([z.string(), z.null()]).optional(), "turnOff": z.boolean().optional(), "cronExpression": z.string(), "keepLatestCount": z.union([z.number(), z.null()]).optional(), "enabled": z.union([z.boolean(), z.null()]).optional(), "applicationId": z.union([z.string(), z.null()]).optional(), "postgresId": z.union([z.string(), z.null()]).optional(), "mariadbId": z.union([z.string(), z.null()]).optional(), "mongoId": z.union([z.string(), z.null()]).optional(), "mysqlId": z.union([z.string(), z.null()]).optional(), "redisId": z.union([z.string(), z.null()]).optional(), "libsqlId": z.union([z.string(), z.null()]).optional(), "composeId": z.union([z.string(), z.null()]).optional(), "createdAt": z.string().optional(), "destinationId": z.string() }),
6180
+ schema: z.object({ "name": z.string(), "volumeName": z.string().regex(new RegExp("^[a-zA-Z0-9][a-zA-Z0-9_.-]*$")), "prefix": z.string(), "serviceType": z.enum(["application", "postgres", "mysql", "mariadb", "mongo", "redis", "compose", "libsql"]).optional(), "appName": z.string().optional(), "serviceName": z.union([z.string(), z.null()]).optional(), "turnOff": z.boolean().optional(), "cronExpression": z.string(), "keepLatestCount": z.union([z.number(), z.null()]).optional(), "enabled": z.union([z.boolean(), z.null()]).optional(), "applicationId": z.union([z.string(), z.null()]).optional(), "postgresId": z.union([z.string(), z.null()]).optional(), "mariadbId": z.union([z.string(), z.null()]).optional(), "mongoId": z.union([z.string(), z.null()]).optional(), "mysqlId": z.union([z.string(), z.null()]).optional(), "redisId": z.union([z.string(), z.null()]).optional(), "libsqlId": z.union([z.string(), z.null()]).optional(), "composeId": z.union([z.string(), z.null()]).optional(), "createdAt": z.string().optional(), "destinationId": z.string() }),
6157
6181
  annotations: {
6158
6182
  title: "VolumeBackups Create",
6159
6183
  ...{ "openWorldHint": true },
@@ -6189,7 +6213,7 @@ export const generatedTools = [
6189
6213
  tag: "volumeBackups",
6190
6214
  method: "POST",
6191
6215
  path: "/volumeBackups.update",
6192
- schema: z.object({ "name": z.string(), "volumeName": z.string(), "prefix": z.string(), "serviceType": z.enum(["application", "postgres", "mysql", "mariadb", "mongo", "redis", "compose", "libsql"]).optional(), "appName": z.string().optional(), "serviceName": z.union([z.string(), z.null()]).optional(), "turnOff": z.boolean().optional(), "cronExpression": z.string(), "keepLatestCount": z.union([z.number(), z.null()]).optional(), "enabled": z.union([z.boolean(), z.null()]).optional(), "applicationId": z.union([z.string(), z.null()]).optional(), "postgresId": z.union([z.string(), z.null()]).optional(), "mariadbId": z.union([z.string(), z.null()]).optional(), "mongoId": z.union([z.string(), z.null()]).optional(), "mysqlId": z.union([z.string(), z.null()]).optional(), "redisId": z.union([z.string(), z.null()]).optional(), "libsqlId": z.union([z.string(), z.null()]).optional(), "composeId": z.union([z.string(), z.null()]).optional(), "createdAt": z.string().optional(), "destinationId": z.string(), "volumeBackupId": z.string().min(1) }),
6216
+ schema: z.object({ "name": z.string(), "volumeName": z.string().regex(new RegExp("^[a-zA-Z0-9][a-zA-Z0-9_.-]*$")), "prefix": z.string(), "serviceType": z.enum(["application", "postgres", "mysql", "mariadb", "mongo", "redis", "compose", "libsql"]).optional(), "appName": z.string().optional(), "serviceName": z.union([z.string(), z.null()]).optional(), "turnOff": z.boolean().optional(), "cronExpression": z.string(), "keepLatestCount": z.union([z.number(), z.null()]).optional(), "enabled": z.union([z.boolean(), z.null()]).optional(), "applicationId": z.union([z.string(), z.null()]).optional(), "postgresId": z.union([z.string(), z.null()]).optional(), "mariadbId": z.union([z.string(), z.null()]).optional(), "mongoId": z.union([z.string(), z.null()]).optional(), "mysqlId": z.union([z.string(), z.null()]).optional(), "redisId": z.union([z.string(), z.null()]).optional(), "libsqlId": z.union([z.string(), z.null()]).optional(), "composeId": z.union([z.string(), z.null()]).optional(), "createdAt": z.string().optional(), "destinationId": z.string(), "volumeBackupId": z.string().min(1) }),
6193
6217
  annotations: {
6194
6218
  title: "VolumeBackups Update",
6195
6219
  ...{ "idempotentHint": true, "openWorldHint": true },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dokploy/mcp",
3
- "version": "0.29.12",
3
+ "version": "0.29.14",
4
4
  "description": "MCP Server for Dokploy API",
5
5
  "main": "build/index.js",
6
6
  "bin": {