@ductape/mcp 0.1.8 → 0.1.9

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
@@ -1123,8 +1123,18 @@ async function main() {
1123
1123
  ' - Importing an app from a Postman v2.1 or OpenAPI 3.0 file: "apps import <file> -t postman|openapi"\n' +
1124
1124
  ' - Managing resources via "resources <type> <verb>" (databases, storage, caches…)\n' +
1125
1125
  ' - Managing cloud connections and cloud-linked resources\n' +
1126
- ' - Provisioning cloud resources with a specific tier: "cloud resources provision -f file.json --tier <tier_name>"\n' +
1127
- ' (list available tiers first with "cloud tiers list --provider <aws|gcp|azure>")\n' +
1126
+ ' - Discovering cloud tiers: "cloud tiers --provider <provider> --type <database|storage> [--db-type <type>] --json"\n' +
1127
+ ' IMPORTANT: `cloud tiers` has no `list` verb. Use only a tier returned for the selected provider/type.\n' +
1128
+ ' - Provisioning and persisting a cloud resource: "cloud resources provision-persist -f file.json --tier <tier_name> --json"\n' +
1129
+ ' The JSON file requires: cloud (connection tag), service (provider service), type (Ductape component type),\n' +
1130
+ ' product (product tag), component (new component tag), and env (existing environment slug).\n' +
1131
+ ' Provider parameters such as region, location, bucketName, dbName, and waitForReady may be supplied in the file.\n' +
1132
+ ' Example GCS Standard file: {"cloud":"gcp-tag","service":"gcs","type":"storage",' +
1133
+ '"product":"product-tag","component":"assets","env":"snd","location":"us-central1"}.\n' +
1134
+ ' Use `provision-persist` when the result must be registered as a Ductape asset; `provision` alone only returns\n' +
1135
+ ' the provider resource and component draft. Tier discovery does not by itself prove that a connection supports\n' +
1136
+ ' provisioning that service: if provisioning reports an unsupported provider/service pair, stop and report it.\n' +
1137
+ ' Never infer an environment, provider service, region, tier, or cost. List/verify each before provisioning.\n' +
1128
1138
  ' - Listing workspaces, products, secrets\n' +
1129
1139
  ' - Linking a project folder: "link --product <tag> --env <slug>"\n' +
1130
1140
  ' - Syncing sessions/notifications/events: "apply" or "apply sessions" etc.\n' +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ductape/mcp",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
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
@@ -1217,8 +1217,18 @@ async function main() {
1217
1217
  ' - Importing an app from a Postman v2.1 or OpenAPI 3.0 file: "apps import <file> -t postman|openapi"\n' +
1218
1218
  ' - Managing resources via "resources <type> <verb>" (databases, storage, caches…)\n' +
1219
1219
  ' - Managing cloud connections and cloud-linked resources\n' +
1220
- ' - Provisioning cloud resources with a specific tier: "cloud resources provision -f file.json --tier <tier_name>"\n' +
1221
- ' (list available tiers first with "cloud tiers list --provider <aws|gcp|azure>")\n' +
1220
+ ' - Discovering cloud tiers: "cloud tiers --provider <provider> --type <database|storage> [--db-type <type>] --json"\n' +
1221
+ ' IMPORTANT: `cloud tiers` has no `list` verb. Use only a tier returned for the selected provider/type.\n' +
1222
+ ' - Provisioning and persisting a cloud resource: "cloud resources provision-persist -f file.json --tier <tier_name> --json"\n' +
1223
+ ' The JSON file requires: cloud (connection tag), service (provider service), type (Ductape component type),\n' +
1224
+ ' product (product tag), component (new component tag), and env (existing environment slug).\n' +
1225
+ ' Provider parameters such as region, location, bucketName, dbName, and waitForReady may be supplied in the file.\n' +
1226
+ ' Example GCS Standard file: {"cloud":"gcp-tag","service":"gcs","type":"storage",' +
1227
+ '"product":"product-tag","component":"assets","env":"snd","location":"us-central1"}.\n' +
1228
+ ' Use `provision-persist` when the result must be registered as a Ductape asset; `provision` alone only returns\n' +
1229
+ ' the provider resource and component draft. Tier discovery does not by itself prove that a connection supports\n' +
1230
+ ' provisioning that service: if provisioning reports an unsupported provider/service pair, stop and report it.\n' +
1231
+ ' Never infer an environment, provider service, region, tier, or cost. List/verify each before provisioning.\n' +
1222
1232
  ' - Listing workspaces, products, secrets\n' +
1223
1233
  ' - Linking a project folder: "link --product <tag> --env <slug>"\n' +
1224
1234
  ' - Syncing sessions/notifications/events: "apply" or "apply sessions" etc.\n' +