@sakupa/mcp 0.7.2 → 0.7.3

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/bin.js CHANGED
@@ -128,7 +128,7 @@ var FORBIDDEN_PATH_SEGMENTS = [
128
128
  var ALLOWED_HIDDEN_PATHS = [".well-known/"];
129
129
 
130
130
  // ../core/dist/domain/version.js
131
- var SAKUPA_MCP_VERSION = "0.7.2";
131
+ var SAKUPA_MCP_VERSION = "0.7.3";
132
132
 
133
133
  // ../core/dist/domain/errors.js
134
134
  var HTTP_STATUS = {
@@ -2301,9 +2301,11 @@ Workflow:
2301
2301
  2. deploy_site \u2014 uploads ONLY the built static output. The first deploy creates a free temporary
2302
2302
  site (public URL ${hostPattern}, valid 24 hours, free banner shown) and stores the
2303
2303
  management credential in .sakupa/site.json. Deploying again updates the site and refreshes
2304
- its validity; refresh_site extends validity without uploading.
2305
- 3. To make the site PERMANENT, subscribe it to a monthly hosting plan (subscribe_site ->
2306
- Stripe-hosted checkout; water/personal/share/business). Paying makes the
2304
+ its validity; refresh_site extends validity without uploading; site_status shows the
2305
+ current deployment and serving state at any time.
2306
+ 3. To make the site PERMANENT, subscribe it to a monthly hosting plan (list_billing_plans
2307
+ shows the catalog; subscribe_site -> Stripe-hosted checkout;
2308
+ water/personal/share/business). Paying makes the
2307
2309
  ${hostPattern} URL permanent \u2014 that is what payment buys. Usage over the chosen plan
2308
2310
  shows an over-limit notice by default. An external AI may periodically query usage and
2309
2311
  recommend a plan, but Sakupa never changes a subscription automatically.
@@ -2311,9 +2313,13 @@ Workflow:
2311
2313
  serving surface alongside the permanent URL. Ownership is proven only by DNS control; the
2312
2314
  first verified request wins; unverified requests expire after 72 hours. billing_status,
2313
2315
  change_subscription_plan, manage_billing and recover_domain_site manage the paid
2314
- lifecycle. Plan changes are confirmed only on Stripe and synchronized by Stripe webhook.
2316
+ lifecycle; unbind_domain removes the custom domain (the permanent URL keeps serving) and
2317
+ delete_site tears the whole site down after explicit confirmation.
2318
+ Plan changes are confirmed only on Stripe and synchronized by Stripe webhook.
2315
2319
  A cancellation keeps the site paid through the current period. Sakupa reverts it to a free
2316
2320
  24h site and removes paid data after Stripe sends the signed final-cancellation webhook.
2321
+ 5. create_support_ticket (subscribed sites) opens a support ticket; report_bug sends a
2322
+ sanitized diagnostic report after the user explicitly confirms it.
2317
2323
 
2318
2324
  Safety boundaries:
2319
2325
  - Static output only: no SSR, API routes, middleware, server actions, databases or online builds.
package/dist/index.js CHANGED
@@ -123,7 +123,7 @@ var FORBIDDEN_PATH_SEGMENTS = [
123
123
  var ALLOWED_HIDDEN_PATHS = [".well-known/"];
124
124
 
125
125
  // ../core/dist/domain/version.js
126
- var SAKUPA_MCP_VERSION = "0.7.2";
126
+ var SAKUPA_MCP_VERSION = "0.7.3";
127
127
 
128
128
  // ../core/dist/domain/errors.js
129
129
  var HTTP_STATUS = {
@@ -2294,9 +2294,11 @@ Workflow:
2294
2294
  2. deploy_site \u2014 uploads ONLY the built static output. The first deploy creates a free temporary
2295
2295
  site (public URL ${hostPattern}, valid 24 hours, free banner shown) and stores the
2296
2296
  management credential in .sakupa/site.json. Deploying again updates the site and refreshes
2297
- its validity; refresh_site extends validity without uploading.
2298
- 3. To make the site PERMANENT, subscribe it to a monthly hosting plan (subscribe_site ->
2299
- Stripe-hosted checkout; water/personal/share/business). Paying makes the
2297
+ its validity; refresh_site extends validity without uploading; site_status shows the
2298
+ current deployment and serving state at any time.
2299
+ 3. To make the site PERMANENT, subscribe it to a monthly hosting plan (list_billing_plans
2300
+ shows the catalog; subscribe_site -> Stripe-hosted checkout;
2301
+ water/personal/share/business). Paying makes the
2300
2302
  ${hostPattern} URL permanent \u2014 that is what payment buys. Usage over the chosen plan
2301
2303
  shows an over-limit notice by default. An external AI may periodically query usage and
2302
2304
  recommend a plan, but Sakupa never changes a subscription automatically.
@@ -2304,9 +2306,13 @@ Workflow:
2304
2306
  serving surface alongside the permanent URL. Ownership is proven only by DNS control; the
2305
2307
  first verified request wins; unverified requests expire after 72 hours. billing_status,
2306
2308
  change_subscription_plan, manage_billing and recover_domain_site manage the paid
2307
- lifecycle. Plan changes are confirmed only on Stripe and synchronized by Stripe webhook.
2309
+ lifecycle; unbind_domain removes the custom domain (the permanent URL keeps serving) and
2310
+ delete_site tears the whole site down after explicit confirmation.
2311
+ Plan changes are confirmed only on Stripe and synchronized by Stripe webhook.
2308
2312
  A cancellation keeps the site paid through the current period. Sakupa reverts it to a free
2309
2313
  24h site and removes paid data after Stripe sends the signed final-cancellation webhook.
2314
+ 5. create_support_ticket (subscribed sites) opens a support ticket; report_bug sends a
2315
+ sanitized diagnostic report after the user explicitly confirms it.
2310
2316
 
2311
2317
  Safety boundaries:
2312
2318
  - Static output only: no SSR, API routes, middleware, server actions, databases or online builds.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sakupa/mcp",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "Sakupa MCP server: publish AI-made static sites from your AI tool. AI-made pages, live in seconds.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",