@shipstatic/mcp 1.3.2 → 1.3.4-beta.1

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 +4 -4
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -64,7 +64,7 @@ Everything above works with no account at all. Connect one when your client offe
64
64
 
65
65
  Install this package when your agent needs to deploy **a folder on your own machine** — the hosted endpoint takes files inline, so it has no path to read from — when you'd rather configure a token once than sign in, or when your MCP client doesn't speak OAuth yet.
66
66
 
67
- The config asks for one thing: `SHIP_TOKEN`. **Its value is your API key** — one credential, two names. The console mints it as an *API key* (it looks like `ship-...`), and the setting that carries it is called the *token*. Get yours free at [my.shipstatic.com/api-key](https://my.shipstatic.com/api-key), paste it where the snippets below show `ship-...`, and every site you publish lands in your account, never expires, and gets bigger limits.
67
+ The config asks for one thing: `SHIP_TOKEN`. **Its value is your API key** — one credential, two names. The console mints it as an *API key* (it starts with `ship-`), and the setting that carries it is called the *token*. Get yours free at [my.shipstatic.com/api-key](https://my.shipstatic.com/api-key), paste it where the snippets below show `ship-your-api-key`, and every site you publish lands in your account, never expires, and gets bigger limits.
68
68
 
69
69
  The key is optional: leave it out and the local server behaves exactly like the hosted endpoint with no account connected — public sites, claim links, live for 3 days.
70
70
 
@@ -73,7 +73,7 @@ The server runs with `npx`, which ships with [Node.js](https://nodejs.org) (20.1
73
73
  ### Claude Code
74
74
 
75
75
  ```bash
76
- claude mcp add shipstatic -e SHIP_TOKEN=ship-... -- npx -y @shipstatic/mcp
76
+ claude mcp add shipstatic -e SHIP_TOKEN=ship-your-api-key -- npx -y @shipstatic/mcp
77
77
  ```
78
78
 
79
79
  ### Cursor
@@ -86,7 +86,7 @@ Add to `~/.cursor/mcp.json`:
86
86
  "shipstatic": {
87
87
  "command": "npx",
88
88
  "args": ["-y", "@shipstatic/mcp"],
89
- "env": { "SHIP_TOKEN": "ship-..." }
89
+ "env": { "SHIP_TOKEN": "ship-your-api-key" }
90
90
  }
91
91
  }
92
92
  }
@@ -102,7 +102,7 @@ Add to `~/.gemini/antigravity/mcp_config.json`:
102
102
  "shipstatic": {
103
103
  "command": "npx",
104
104
  "args": ["-y", "@shipstatic/mcp"],
105
- "env": { "SHIP_TOKEN": "ship-..." }
105
+ "env": { "SHIP_TOKEN": "ship-your-api-key" }
106
106
  }
107
107
  }
108
108
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@shipstatic/mcp",
3
- "version": "1.3.2",
3
+ "version": "1.3.4-beta.1",
4
4
  "mcpName": "com.shipstatic/mcp",
5
- "description": "Deploy static websites from AI agents. Start with the hosted endpoint at mcp.shipstatic.com no install, no signup, no API key or install this package to deploy folders from your own machine. The same fifteen tools either way.",
5
+ "description": "Deploy static websites from AI agents. Start with the hosted endpoint at mcp.shipstatic.com \u2014 no install, no signup, no API key \u2014 or install this package to deploy folders from your own machine. The same fifteen tools either way.",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
8
8
  "sideEffects": [
@@ -67,8 +67,8 @@
67
67
  "license": "MIT",
68
68
  "dependencies": {
69
69
  "@modelcontextprotocol/sdk": "^1.30.0",
70
- "@shipstatic/ship": "2.3.1",
71
- "@shipstatic/types": "2.9.0",
70
+ "@shipstatic/ship": "2.3.4-beta.1",
71
+ "@shipstatic/types": "2.11.0-beta.1",
72
72
  "zod": "^4.4.3"
73
73
  },
74
74
  "devDependencies": {