@shipstatic/mcp 0.4.7 → 0.4.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/README.md +13 -3
- package/dist/call.js +3 -0
- package/dist/server.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,6 +6,16 @@ MCP server for [ShipStatic](https://shipstatic.com) — deploy static websites,
|
|
|
6
6
|
<img width="380" height="200" src="https://glama.ai/mcp/servers/@shipstatic/shipstatic/badge" alt="shipstatic MCP server" />
|
|
7
7
|
</a>
|
|
8
8
|
|
|
9
|
+
## No install? Use the hosted endpoint
|
|
10
|
+
|
|
11
|
+
For anonymous one-shot deploys, point your MCP client at:
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
https://mcp.shipstatic.com
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Same `deployments_upload` tool as below — no Node, no npm, no config. For listing, custom domains, or account-tied operations, install the package below.
|
|
18
|
+
|
|
9
19
|
## Setup
|
|
10
20
|
|
|
11
21
|
### Claude Code
|
|
@@ -71,8 +81,8 @@ claude mcp add shipstatic -e SHIP_API_KEY=ship-... -- npx @shipstatic/mcp
|
|
|
71
81
|
| Tool | Description |
|
|
72
82
|
|------|-------------|
|
|
73
83
|
| `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
|
|
75
|
-
| `deployments_get` | Get deployment details including URL, status, file count, size, and
|
|
84
|
+
| `deployments_list` | List all deployments with their URLs, status, labels, and password protection state |
|
|
85
|
+
| `deployments_get` | Get deployment details including URL, status, file count, size, labels, and password protection state |
|
|
76
86
|
| `deployments_set` | Update the labels on a deployment for organization and filtering |
|
|
77
87
|
| `deployments_remove` | Permanently remove a deployment and all its files |
|
|
78
88
|
|
|
@@ -81,7 +91,7 @@ claude mcp add shipstatic -e SHIP_API_KEY=ship-... -- npx @shipstatic/mcp
|
|
|
81
91
|
| Tool | Description |
|
|
82
92
|
|------|-------------|
|
|
83
93
|
| `domains_set` | Connect a custom domain to your site, switch deployments, or update labels |
|
|
84
|
-
| `domains_list` | List all domains with their linked
|
|
94
|
+
| `domains_list` | List all domains with their linked deployment and verification status |
|
|
85
95
|
| `domains_get` | Get domain details including linked deployment, verification status, and labels |
|
|
86
96
|
| `domains_records` | Get the DNS records you need to configure at your DNS provider |
|
|
87
97
|
| `domains_dns` | Look up which DNS provider hosts a domain (e.g. Cloudflare, Namecheap) |
|
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/dist/server.js
CHANGED
|
@@ -76,7 +76,7 @@ export function createServer(ship) {
|
|
|
76
76
|
},
|
|
77
77
|
}, ({ domain, deployment, labels }) => call(() => ship.domains.set(domain, { deployment, labels })));
|
|
78
78
|
server.registerTool('domains_list', {
|
|
79
|
-
description: 'List all domains with their URLs, linked
|
|
79
|
+
description: 'List all domains with their URLs, linked deployment, and verification status.',
|
|
80
80
|
annotations: READ,
|
|
81
81
|
}, () => call(() => ship.domains.list()));
|
|
82
82
|
server.registerTool('domains_get', {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipstatic/mcp",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.9",
|
|
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.
|
|
48
|
+
"@shipstatic/ship": "^0.9.6",
|
|
49
49
|
"zod": "^4.3.6"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@shipstatic/types": "^0.9.
|
|
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",
|