@ductape/mcp 0.1.41 → 0.1.42

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.
package/dist/index.js CHANGED
@@ -1097,6 +1097,7 @@ const ADMIN_SUBCOMMANDS = [
1097
1097
  'link', 'unlink', 'init',
1098
1098
  'products', 'apps',
1099
1099
  'resources',
1100
+ 'events',
1100
1101
  'cloud',
1101
1102
  'secrets',
1102
1103
  'generate',
@@ -3223,9 +3224,10 @@ const cliInputSchema = z.object({
3223
3224
  command: z.string().describe('The ductape CLI command to run, without the leading "ductape" word. ' +
3224
3225
  'Examples: "products list", "products create --name \\"My Product\\" --tag my-product", ' +
3225
3226
  '"apps list", "apps create -f app.json", "resources storage list", ' +
3227
+ '"events topics create -f topic.json", "events topics list --tag broker-tag", ' +
3226
3228
  '"cloud connections list", "link --product my-product --env dev".\n\n' +
3227
3229
  'Use this tool for administrative operations: creating or updating products, apps, ' +
3228
- 'resources (databases, storage, caches…), cloud connections, secrets, ' +
3230
+ 'resources (databases, storage, caches…), event broker topics, cloud connections, secrets, ' +
3229
3231
  'and for apply/migrate workflows.\n\n' +
3230
3232
  'Note: environments, app actions, features, quotas, fallbacks, and jobs are configured ' +
3231
3233
  'in the Workbench UI — there are no CLI commands for them.\n\n' +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ductape/mcp",
3
- "version": "0.1.41",
3
+ "version": "0.1.42",
4
4
  "description": "MCP server that exposes Ductape SDK operations via the backend proxy",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -1146,6 +1146,7 @@ const ADMIN_SUBCOMMANDS = [
1146
1146
  'link', 'unlink', 'init',
1147
1147
  'products', 'apps',
1148
1148
  'resources',
1149
+ 'events',
1149
1150
  'cloud',
1150
1151
  'secrets',
1151
1152
  'generate',
@@ -3303,9 +3304,10 @@ const cliInputSchema = z.object({
3303
3304
  'The ductape CLI command to run, without the leading "ductape" word. ' +
3304
3305
  'Examples: "products list", "products create --name \\"My Product\\" --tag my-product", ' +
3305
3306
  '"apps list", "apps create -f app.json", "resources storage list", ' +
3307
+ '"events topics create -f topic.json", "events topics list --tag broker-tag", ' +
3306
3308
  '"cloud connections list", "link --product my-product --env dev".\n\n' +
3307
3309
  'Use this tool for administrative operations: creating or updating products, apps, ' +
3308
- 'resources (databases, storage, caches…), cloud connections, secrets, ' +
3310
+ 'resources (databases, storage, caches…), event broker topics, cloud connections, secrets, ' +
3309
3311
  'and for apply/migrate workflows.\n\n' +
3310
3312
  'Note: environments, app actions, features, quotas, fallbacks, and jobs are configured ' +
3311
3313
  'in the Workbench UI — there are no CLI commands for them.\n\n' +