@shipstatic/mcp 0.4.7 → 0.4.8

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/README.md CHANGED
@@ -71,8 +71,8 @@ claude mcp add shipstatic -e SHIP_API_KEY=ship-... -- npx @shipstatic/mcp
71
71
  | Tool | Description |
72
72
  |------|-------------|
73
73
  | `deployments_upload` | Publish files and get a live URL instantly, optionally protected by a password |
74
- | `deployments_list` | List all deployments with their URLs, status, and labels |
75
- | `deployments_get` | Get deployment details including URL, status, file count, size, and labels |
74
+ | `deployments_list` | List all deployments with their URLs, status, labels, and password protection state |
75
+ | `deployments_get` | Get deployment details including URL, status, file count, size, labels, and password protection state |
76
76
  | `deployments_set` | Update the labels on a deployment for organization and filtering |
77
77
  | `deployments_remove` | Permanently remove a deployment and all its files |
78
78
 
package/dist/call.js CHANGED
@@ -17,6 +17,9 @@ function handleError(error) {
17
17
  if (error.isType(ErrorType.Authentication)) {
18
18
  message += '\n\nHint: Set a free SHIP_API_KEY environment variable in your MCP server configuration.';
19
19
  }
20
+ if (error.isType(ErrorType.Forbidden)) {
21
+ message += '\n\nHint: This action is not permitted. Likely cause: plan limits reached or the account is terminated. Stop retrying — the user needs to upgrade or contact support at https://my.shipstatic.com.';
22
+ }
20
23
  if (error.isType(ErrorType.Validation) && error.details) {
21
24
  message += `\n\nDetails: ${safeStringify(error.details)}`;
22
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/mcp",
3
- "version": "0.4.7",
3
+ "version": "0.4.8",
4
4
  "mcpName": "com.shipstatic/mcp",
5
5
  "description": "Free, no account needed — deploy static websites, landing pages, and prototypes instantly from AI agents",
6
6
  "type": "module",
@@ -45,11 +45,11 @@
45
45
  "license": "MIT",
46
46
  "dependencies": {
47
47
  "@modelcontextprotocol/sdk": "^1.29.0",
48
- "@shipstatic/ship": "^0.9.1",
48
+ "@shipstatic/ship": "^0.9.6",
49
49
  "zod": "^4.3.6"
50
50
  },
51
51
  "devDependencies": {
52
- "@shipstatic/types": "^0.9.1",
52
+ "@shipstatic/types": "^0.9.8",
53
53
  "@types/node": "^25.6.0",
54
54
  "husky": "^9.1.7",
55
55
  "typescript": "^6.0.2",