@shipstatic/mcp 0.4.9 → 0.5.0

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.
Files changed (2) hide show
  1. package/README.md +47 -25
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,22 +1,48 @@
1
1
  # @shipstatic/mcp
2
2
 
3
- MCP server for [ShipStatic](https://shipstatic.com) — deploy static websites, landing pages, and prototypes instantly from AI agents.
3
+ ShipStatic MCP — deploy static websites, landing pages, and prototypes from AI agents.
4
+
5
+ **One URL. Your agent ships.**
4
6
 
5
7
  <a href="https://glama.ai/mcp/servers/@shipstatic/shipstatic">
6
8
  <img width="380" height="200" src="https://glama.ai/mcp/servers/@shipstatic/shipstatic/badge" alt="shipstatic MCP server" />
7
9
  </a>
8
10
 
9
- ## No install? Use the hosted endpoint
11
+ ## Hosted no install
10
12
 
11
- For anonymous one-shot deploys, point your MCP client at:
13
+ Drop this URL into any MCP client. Your agent can publish a website in its next message — free, no install, no signup, no API key.
12
14
 
13
15
  ```
14
16
  https://mcp.shipstatic.com
15
17
  ```
16
18
 
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.
19
+ ### Claude Code
18
20
 
19
- ## Setup
21
+ ```bash
22
+ claude mcp add --transport http shipstatic https://mcp.shipstatic.com
23
+ ```
24
+
25
+ ### Cursor, Antigravity, Windsurf, Zed — anywhere with `mcp.json`
26
+
27
+ ```json
28
+ {
29
+ "mcpServers": {
30
+ "shipstatic": {
31
+ "url": "https://mcp.shipstatic.com"
32
+ }
33
+ }
34
+ }
35
+ ```
36
+
37
+ ### Claude Desktop, Claude.ai web
38
+
39
+ Add a custom connector pointing at `https://mcp.shipstatic.com`.
40
+
41
+ The hosted endpoint exposes one tool: `deployments_upload`. Public deployments expire in 3 days unless claimed — the response includes a claim URL the user can visit to keep the site permanently. Set a `password` arg to gate the deployment behind an unlock prompt.
42
+
43
+ ## Local — full toolset
44
+
45
+ Install this package when you need to manage deployments, link custom domains, or use account-tied operations.
20
46
 
21
47
  ### Claude Code
22
48
 
@@ -56,35 +82,31 @@ Add to `~/.gemini/antigravity/mcp_config.json`:
56
82
 
57
83
  ### Windsurf, Zed, and other MCP clients
58
84
 
59
- Same config format — `npx @shipstatic/mcp` via stdio. Works with any MCP-compatible client.
60
-
61
- ## Deploy — Free, No Account Needed
62
-
63
- Ask your AI agent to deploy a site. No API key, no sign-up, no configuration.
85
+ Same config format — `npx @shipstatic/mcp`. Works with any MCP-compatible client.
64
86
 
65
- Your site is live instantly on `*.shipstatic.com`.
87
+ ## Free API key permanent deployments
66
88
 
67
- Deployments without an API key are public and expire in 3 days. The response includes a **claim URL** always show it to the user so they can keep the site permanently.
89
+ `SHIP_API_KEY` is optional. Without it, deploys behave like the hosted endpoint (public, claim URL, 3-day expiry). With it, you get permanent deployments, the full toolset, and bigger limits.
68
90
 
69
- Want a private site? Ask your agent to set a password when deploying — visitors will be prompted to unlock before viewing, on the deployment URL and on any custom domains pointing at it.
70
-
71
- ## All Tools — Free API Key
72
-
73
- 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):
91
+ Get a free key at [my.shipstatic.com/api-key](https://my.shipstatic.com/api-key):
74
92
 
75
93
  ```bash
76
94
  claude mcp add shipstatic -e SHIP_API_KEY=ship-... -- npx @shipstatic/mcp
77
95
  ```
78
96
 
97
+ ## Tools
98
+
99
+ The hosted endpoint exposes `deployments_upload` only. The local install exposes everything below.
100
+
79
101
  ### Deployments
80
102
 
81
- | Tool | Description |
82
- |------|-------------|
83
- | `deployments_upload` | Publish files and get a live URL instantly, optionally protected by a password |
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 |
86
- | `deployments_set` | Update the labels on a deployment for organization and filtering |
87
- | `deployments_remove` | Permanently remove a deployment and all its files |
103
+ | Tool | Description | Hosted |
104
+ |------|-------------|:---:|
105
+ | `deployments_upload` | Publish files and get a live URL instantly, optionally protected by a password | ✓ |
106
+ | `deployments_list` | List all deployments with their URLs, status, labels, and password protection state | |
107
+ | `deployments_get` | Get deployment details including URL, status, file count, size, labels, and password protection state | |
108
+ | `deployments_set` | Update the labels on a deployment for organization and filtering | |
109
+ | `deployments_remove` | Permanently remove a deployment and all its files | |
88
110
 
89
111
  ### Domains
90
112
 
@@ -108,7 +130,7 @@ claude mcp add shipstatic -e SHIP_API_KEY=ship-... -- npx @shipstatic/mcp
108
130
 
109
131
  ## Registry
110
132
 
111
- Published to the [MCP Registry](https://registry.modelcontextprotocol.io/v0.1/servers?search=com.shipstatic/mcp) as `com.shipstatic/mcp`.
133
+ Published to the [MCP Registry](https://registry.modelcontextprotocol.io/v0.1/servers?search=com.shipstatic/mcp) as `com.shipstatic/mcp`. Registry-aware clients see both the hosted endpoint and the local install and pick the right transport for their environment.
112
134
 
113
135
  ## License
114
136
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@shipstatic/mcp",
3
- "version": "0.4.9",
3
+ "version": "0.5.0",
4
4
  "mcpName": "com.shipstatic/mcp",
5
- "description": "Free, no account needed — deploy static websites, landing pages, and prototypes instantly from AI agents",
5
+ "description": "ShipStatic MCP — deploy static websites from AI agents. Full toolset incl. custom domains. Free hosted endpoint at mcp.shipstatic.com — no install.",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
8
8
  "types": "./dist/index.d.ts",