@dokploy/mcp 0.29.4 → 0.29.5

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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dokploy/mcp",
3
- "version": "0.29.4",
3
+ "version": "0.29.5",
4
4
  "description": "MCP Server for Dokploy API",
5
5
  "main": "build/index.js",
6
6
  "bin": {