@shipstatic/mcp 0.7.0-beta.0 → 0.7.0-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.
- package/README.md +2 -2
- package/dist/index.js +0 -0
- package/package.json +13 -11
package/README.md
CHANGED
|
@@ -83,11 +83,11 @@ Add to `~/.gemini/antigravity/mcp_config.json`:
|
|
|
83
83
|
|
|
84
84
|
Same config format — `npx @shipstatic/mcp`. Works with any MCP-compatible client.
|
|
85
85
|
|
|
86
|
-
## Free
|
|
86
|
+
## Free API key — permanent deployments
|
|
87
87
|
|
|
88
88
|
`SHIP_TOKEN` 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.
|
|
89
89
|
|
|
90
|
-
Get a free
|
|
90
|
+
Get a free API key at [my.shipstatic.com/api-key](https://my.shipstatic.com/api-key):
|
|
91
91
|
|
|
92
92
|
```bash
|
|
93
93
|
claude mcp add shipstatic -e SHIP_TOKEN=ship-... -- npx @shipstatic/mcp
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipstatic/mcp",
|
|
3
|
-
"version": "0.7.0-beta.
|
|
3
|
+
"version": "0.7.0-beta.1",
|
|
4
4
|
"mcpName": "com.shipstatic/mcp",
|
|
5
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",
|
|
@@ -9,6 +9,16 @@
|
|
|
9
9
|
"bin": {
|
|
10
10
|
"shipstatic-mcp": "./dist/index.js"
|
|
11
11
|
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsc",
|
|
14
|
+
"clean": "rm -rf dist",
|
|
15
|
+
"prepare": "git config core.hooksPath scripts/githooks",
|
|
16
|
+
"test": "vitest",
|
|
17
|
+
"typecheck": "tsc -p tsconfig.check.json --noEmit",
|
|
18
|
+
"lint": "biome check .",
|
|
19
|
+
"format": "biome format --write .",
|
|
20
|
+
"coverage": "vitest --run --coverage"
|
|
21
|
+
},
|
|
12
22
|
"files": [
|
|
13
23
|
"dist",
|
|
14
24
|
"README.md"
|
|
@@ -56,13 +66,5 @@
|
|
|
56
66
|
"typescript": "^6.0.2",
|
|
57
67
|
"vitest": "4.1.10"
|
|
58
68
|
},
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
"clean": "rm -rf dist",
|
|
62
|
-
"test": "vitest",
|
|
63
|
-
"typecheck": "tsc -p tsconfig.check.json --noEmit",
|
|
64
|
-
"lint": "biome check .",
|
|
65
|
-
"format": "biome format --write .",
|
|
66
|
-
"coverage": "vitest --run --coverage"
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
+
"packageManager": "pnpm@10.12.4"
|
|
70
|
+
}
|