@dokploy/mcp 0.29.4 → 0.29.6

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.
@@ -1035,6 +1035,18 @@ export const generatedTools = [
1035
1035
  ...{ "idempotentHint": true, "openWorldHint": true },
1036
1036
  },
1037
1037
  },
1038
+ {
1039
+ name: "compose-previewTemplate",
1040
+ description: "POST /compose.previewTemplate",
1041
+ tag: "compose",
1042
+ method: "POST",
1043
+ path: "/compose.previewTemplate",
1044
+ schema: z.object({ "base64": z.string(), "appName": z.string(), "serverId": z.string().optional() }),
1045
+ annotations: {
1046
+ title: "Compose PreviewTemplate",
1047
+ ...{ "idempotentHint": true, "openWorldHint": true },
1048
+ },
1049
+ },
1038
1050
  {
1039
1051
  name: "compose-import",
1040
1052
  description: "POST /compose.import",
@@ -1179,6 +1191,18 @@ export const generatedTools = [
1179
1191
  ...{ "destructiveHint": true, "openWorldHint": true },
1180
1192
  },
1181
1193
  },
1194
+ {
1195
+ name: "deployment-readLogs",
1196
+ description: "GET /deployment.readLogs",
1197
+ tag: "deployment",
1198
+ method: "GET",
1199
+ path: "/deployment.readLogs",
1200
+ schema: z.object({ "deploymentId": z.string().min(1), "tail": z.number().int().gte(1).lte(10000).default(100) }),
1201
+ annotations: {
1202
+ title: "Deployment ReadLogs",
1203
+ ...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
1204
+ },
1205
+ },
1182
1206
  {
1183
1207
  name: "destination-create",
1184
1208
  description: "POST /destination.create",
@@ -4311,6 +4335,30 @@ export const generatedTools = [
4311
4335
  ...{ "idempotentHint": true, "openWorldHint": true },
4312
4336
  },
4313
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
+ },
4314
4362
  {
4315
4363
  name: "settings-readTraefikConfig",
4316
4364
  description: "GET /settings.readTraefikConfig",
@@ -5559,6 +5607,18 @@ export const generatedTools = [
5559
5607
  ...{ "readOnlyHint": true, "idempotentHint": true, "openWorldHint": true },
5560
5608
  },
5561
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
+ },
5562
5622
  {
5563
5623
  name: "sso-listProviders",
5564
5624
  description: "GET /sso.listProviders",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dokploy/mcp",
3
- "version": "0.29.4",
3
+ "version": "0.29.6",
4
4
  "description": "MCP Server for Dokploy API",
5
5
  "main": "build/index.js",
6
6
  "bin": {