@shipstatic/mcp 0.4.1 → 0.4.4
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 +12 -8
- package/dist/server.js +5 -5
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# @shipstatic/mcp
|
|
2
2
|
|
|
3
|
-
MCP server for [ShipStatic](https://shipstatic.com) —
|
|
4
|
-
|
|
5
|
-
ShipStatic is static hosting without the complexity. No build steps, no framework lock-in — upload your files and get a live URL.
|
|
3
|
+
MCP server for [ShipStatic](https://shipstatic.com) — deploy static websites, landing pages, and prototypes instantly from AI agents.
|
|
6
4
|
|
|
7
5
|
<a href="https://glama.ai/mcp/servers/@shipstatic/shipstatic">
|
|
8
6
|
<img width="380" height="200" src="https://glama.ai/mcp/servers/@shipstatic/shipstatic/badge" alt="shipstatic MCP server" />
|
|
@@ -50,21 +48,27 @@ Add to `~/.gemini/antigravity/mcp_config.json`:
|
|
|
50
48
|
|
|
51
49
|
Same config format — `npx @shipstatic/mcp` via stdio. Works with any MCP-compatible client.
|
|
52
50
|
|
|
53
|
-
|
|
51
|
+
## Deploy — Free, No Account Needed
|
|
52
|
+
|
|
53
|
+
Ask your AI agent to deploy a site. No API key, no sign-up, no configuration.
|
|
54
|
+
|
|
55
|
+
You get a live, shareable URL on `*.shipstatic.com` instantly.
|
|
54
56
|
|
|
55
|
-
|
|
57
|
+
Deployments without an API key are public and expire in 3 days.
|
|
58
|
+
|
|
59
|
+
## All Tools — Free API Key
|
|
60
|
+
|
|
61
|
+
For permanent deployments and full control over your sites and domains, add a free API key from [my.shipstatic.com/api-key](https://my.shipstatic.com/api-key):
|
|
56
62
|
|
|
57
63
|
```bash
|
|
58
64
|
claude mcp add shipstatic -e SHIP_API_KEY=ship-... -- npx @shipstatic/mcp
|
|
59
65
|
```
|
|
60
66
|
|
|
61
|
-
## Tools
|
|
62
|
-
|
|
63
67
|
### Deployments
|
|
64
68
|
|
|
65
69
|
| Tool | Description |
|
|
66
70
|
|------|-------------|
|
|
67
|
-
| `deployments_upload` | Publish files and get a live URL instantly
|
|
71
|
+
| `deployments_upload` | Publish files and get a live URL instantly |
|
|
68
72
|
| `deployments_list` | List all your deployed sites with their URLs, status, and labels |
|
|
69
73
|
| `deployments_get` | Get details for a specific deployment including URL, status, and file count |
|
|
70
74
|
| `deployments_set` | Update the labels on a deployment for organization and filtering |
|
package/dist/server.js
CHANGED
|
@@ -22,7 +22,7 @@ To add a custom domain: domains_validate → domains_set → domains_records (sh
|
|
|
22
22
|
export function createServer(ship) {
|
|
23
23
|
const server = new McpServer({
|
|
24
24
|
name: 'shipstatic',
|
|
25
|
-
version: '0.
|
|
25
|
+
version: '0.4.3',
|
|
26
26
|
}, {
|
|
27
27
|
instructions: INSTRUCTIONS,
|
|
28
28
|
});
|
|
@@ -36,11 +36,11 @@ export function createServer(ship) {
|
|
|
36
36
|
},
|
|
37
37
|
}, ({ path, labels }) => call(() => ship.deployments.upload(path, { labels, via: 'mcp' })));
|
|
38
38
|
server.registerTool('deployments_list', {
|
|
39
|
-
description: 'List all deployments with their
|
|
39
|
+
description: 'List all deployments with their URLs, status, and labels.',
|
|
40
40
|
annotations: READ,
|
|
41
41
|
}, () => call(() => ship.deployments.list()));
|
|
42
42
|
server.registerTool('deployments_get', {
|
|
43
|
-
description: 'Get deployment details including status, file count, size, and labels.',
|
|
43
|
+
description: 'Get deployment details including URL, status, file count, size, and labels.',
|
|
44
44
|
annotations: READ,
|
|
45
45
|
inputSchema: {
|
|
46
46
|
deployment: z.string().describe('Deployment hostname (e.g. "happy-cat-abc1234.shipstatic.com"). Returned by deployments_upload or deployments_list.'),
|
|
@@ -72,11 +72,11 @@ export function createServer(ship) {
|
|
|
72
72
|
},
|
|
73
73
|
}, ({ domain, deployment, labels }) => call(() => ship.domains.set(domain, { deployment, labels })));
|
|
74
74
|
server.registerTool('domains_list', {
|
|
75
|
-
description: 'List all domains with their linked deployments and verification status.',
|
|
75
|
+
description: 'List all domains with their URLs, linked deployments, and verification status.',
|
|
76
76
|
annotations: READ,
|
|
77
77
|
}, () => call(() => ship.domains.list()));
|
|
78
78
|
server.registerTool('domains_get', {
|
|
79
|
-
description: 'Get domain details including linked deployment, verification status, and labels.',
|
|
79
|
+
description: 'Get domain details including URL, linked deployment, verification status, and labels.',
|
|
80
80
|
annotations: READ,
|
|
81
81
|
inputSchema: {
|
|
82
82
|
domain: z.string().describe('Domain name (e.g. "www.example.com"). Use domains_list to find names.'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipstatic/mcp",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
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,15 +45,15 @@
|
|
|
45
45
|
"license": "MIT",
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
48
|
-
"@shipstatic/ship": "^0.8.
|
|
48
|
+
"@shipstatic/ship": "^0.8.7",
|
|
49
49
|
"zod": "^4.3.6"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@shipstatic/types": "^0.8.
|
|
53
|
-
"@types/node": "^
|
|
52
|
+
"@shipstatic/types": "^0.8.3",
|
|
53
|
+
"@types/node": "^25.5.2",
|
|
54
54
|
"husky": "^9.1.7",
|
|
55
|
-
"typescript": "^
|
|
56
|
-
"vitest": "^
|
|
55
|
+
"typescript": "^6.0.2",
|
|
56
|
+
"vitest": "^4.1.3"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"build": "tsc",
|