@dokploy/mcp 0.29.5 → 0.29.7

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.
@@ -4335,6 +4335,30 @@ export const generatedTools = [
4335
4335
  ...{ "idempotentHint": true, "openWorldHint": true },
4336
4336
  },
4337
4337
  },
4338
+ {
4339
+ name: "settings-updateRemoteServersOnly",
4340
+ description: "POST /settings.updateRemoteServersOnly",
4341
+ tag: "settings",
4342
+ method: "POST",
4343
+ path: "/settings.updateRemoteServersOnly",
4344
+ schema: z.object({ "remoteServersOnly": z.boolean() }),
4345
+ annotations: {
4346
+ title: "Settings UpdateRemoteServersOnly",
4347
+ ...{ "idempotentHint": true, "openWorldHint": true },
4348
+ },
4349
+ },
4350
+ {
4351
+ name: "settings-updateEnforceSSO",
4352
+ description: "POST /settings.updateEnforceSSO",
4353
+ tag: "settings",
4354
+ method: "POST",
4355
+ path: "/settings.updateEnforceSSO",
4356
+ schema: z.object({ "enforceSSO": z.boolean() }),
4357
+ annotations: {
4358
+ title: "Settings UpdateEnforceSSO",
4359
+ ...{ "idempotentHint": true, "openWorldHint": true },
4360
+ },
4361
+ },
4338
4362
  {
4339
4363
  name: "settings-readTraefikConfig",
4340
4364
  description: "GET /settings.readTraefikConfig",
@@ -5583,6 +5607,18 @@ export const generatedTools = [
5583
5607
  ...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
5584
5608
  },
5585
5609
  },
5610
+ {
5611
+ name: "sso-enforceSSO",
5612
+ description: "GET /sso.enforceSSO",
5613
+ tag: "sso",
5614
+ method: "GET",
5615
+ path: "/sso.enforceSSO",
5616
+ schema: z.object({}),
5617
+ annotations: {
5618
+ title: "Sso EnforceSSO",
5619
+ ...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
5620
+ },
5621
+ },
5586
5622
  {
5587
5623
  name: "sso-listProviders",
5588
5624
  description: "GET /sso.listProviders",
@@ -5829,7 +5865,7 @@ export const generatedTools = [
5829
5865
  tag: "schedule",
5830
5866
  method: "POST",
5831
5867
  path: "/schedule.create",
5832
- schema: z.object({ "scheduleId": z.string().optional(), "name": z.string(), "description": z.union([z.string(), z.null()]).optional(), "cronExpression": z.string(), "appName": z.string().optional(), "serviceName": z.union([z.string(), z.null()]).optional(), "shellType": z.enum(["bash", "sh"]).optional(), "scheduleType": z.enum(["application", "compose", "server", "dokploy-server"]).optional(), "command": z.string(), "script": z.union([z.string(), z.null()]).optional(), "applicationId": z.union([z.string(), z.null()]).optional(), "composeId": z.union([z.string(), z.null()]).optional(), "serverId": z.union([z.string(), z.null()]).optional(), "userId": z.union([z.string(), z.null()]).optional(), "enabled": z.boolean().optional(), "timezone": z.union([z.string(), z.null()]).optional(), "createdAt": z.string().optional() }),
5868
+ schema: z.object({ "scheduleId": z.string().optional(), "name": z.string(), "description": z.union([z.string(), z.null()]).optional(), "cronExpression": z.string(), "appName": z.string().optional(), "serviceName": z.union([z.string(), z.null()]).optional(), "shellType": z.enum(["bash", "sh"]).optional(), "scheduleType": z.enum(["application", "compose", "server", "dokploy-server"]).optional(), "command": z.string(), "script": z.union([z.string(), z.null()]).optional(), "applicationId": z.union([z.string(), z.null()]).optional(), "composeId": z.union([z.string(), z.null()]).optional(), "serverId": z.union([z.string(), z.null()]).optional(), "organizationId": z.union([z.string(), z.null()]).optional(), "enabled": z.boolean().optional(), "timezone": z.union([z.string(), z.null()]).optional(), "createdAt": z.string().optional() }),
5833
5869
  annotations: {
5834
5870
  title: "Schedule Create",
5835
5871
  ...{ "openWorldHint": true },
@@ -5841,7 +5877,7 @@ export const generatedTools = [
5841
5877
  tag: "schedule",
5842
5878
  method: "POST",
5843
5879
  path: "/schedule.update",
5844
- schema: z.object({ "scheduleId": z.string().min(1), "name": z.string(), "description": z.union([z.string(), z.null()]).optional(), "cronExpression": z.string(), "appName": z.string().optional(), "serviceName": z.union([z.string(), z.null()]).optional(), "shellType": z.enum(["bash", "sh"]).optional(), "scheduleType": z.enum(["application", "compose", "server", "dokploy-server"]).optional(), "command": z.string(), "script": z.union([z.string(), z.null()]).optional(), "applicationId": z.union([z.string(), z.null()]).optional(), "composeId": z.union([z.string(), z.null()]).optional(), "serverId": z.union([z.string(), z.null()]).optional(), "userId": z.union([z.string(), z.null()]).optional(), "enabled": z.boolean().optional(), "timezone": z.union([z.string(), z.null()]).optional(), "createdAt": z.string().optional() }),
5880
+ schema: z.object({ "scheduleId": z.string().min(1), "name": z.string(), "description": z.union([z.string(), z.null()]).optional(), "cronExpression": z.string(), "appName": z.string().optional(), "serviceName": z.union([z.string(), z.null()]).optional(), "shellType": z.enum(["bash", "sh"]).optional(), "scheduleType": z.enum(["application", "compose", "server", "dokploy-server"]).optional(), "command": z.string(), "script": z.union([z.string(), z.null()]).optional(), "applicationId": z.union([z.string(), z.null()]).optional(), "composeId": z.union([z.string(), z.null()]).optional(), "serverId": z.union([z.string(), z.null()]).optional(), "organizationId": z.union([z.string(), z.null()]).optional(), "enabled": z.boolean().optional(), "timezone": z.union([z.string(), z.null()]).optional(), "createdAt": z.string().optional() }),
5845
5881
  annotations: {
5846
5882
  title: "Schedule Update",
5847
5883
  ...{ "idempotentHint": true, "openWorldHint": true },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dokploy/mcp",
3
- "version": "0.29.5",
3
+ "version": "0.29.7",
4
4
  "description": "MCP Server for Dokploy API",
5
5
  "main": "build/index.js",
6
6
  "bin": {