@shipstatic/mcp 1.9.0 → 1.9.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 +15 -4
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
> ⚡ **You probably don't need to install this.** The same server is hosted at **`https://mcp.shipstatic.com`** — drop that URL into any MCP client and your agent can publish a website in its next message. No install, no Node.js, no signup, no API key.
|
|
6
6
|
>
|
|
7
|
-
> **This package is the local alternative.** Install it when your agent needs to deploy a folder on your own machine, when you'd rather configure a token once than sign in, or when your client doesn't speak OAuth yet — the same fifteen tools, reached the other way. [Local setup ↓](#local
|
|
7
|
+
> **This package is the local alternative.** Install it when your agent needs to deploy a folder on your own machine, when you'd rather configure a token once than sign in, or when your client doesn't speak OAuth yet — the same fifteen tools, reached the other way. [Local setup ↓](#local-the-same-tools-from-your-own-machine)
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Deploy static websites, landing pages, and prototypes instantly from AI agents. Ask yours to put your site online and get back a real, shareable link in seconds.
|
|
10
10
|
|
|
11
11
|
[](https://smithery.ai/servers/shipstatic/ship)
|
|
12
12
|
[](https://glama.ai/mcp/servers/shipstatic/mcp)
|
|
13
13
|
|
|
14
|
-
## Hosted
|
|
14
|
+
## Hosted: start here
|
|
15
15
|
|
|
16
16
|
Drop `https://mcp.shipstatic.com` into any MCP client. No install, no signup, no API key — your agent can publish a website in its next message.
|
|
17
17
|
|
|
@@ -60,7 +60,7 @@ Want the site private? Ask for a password — visitors must enter it before they
|
|
|
60
60
|
|
|
61
61
|
Everything above works with no account at all. Connect one when your client offers to sign you in, and the same URL answers with the rest: everything you've shipped, your own domains, and sites that stay up permanently. Nothing to install, no key to paste — your client starts the sign-in itself.
|
|
62
62
|
|
|
63
|
-
## Local
|
|
63
|
+
## Local: the same tools, from your own machine
|
|
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
|
|
|
@@ -175,6 +175,17 @@ It needs an account — `SHIP_TOKEN` here, a connected account on the hosted end
|
|
|
175
175
|
|
|
176
176
|
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 whichever fits their environment.
|
|
177
177
|
|
|
178
|
+
## Also available
|
|
179
|
+
|
|
180
|
+
| Surface | Reach it |
|
|
181
|
+
|---------|----------|
|
|
182
|
+
| **[CLI and SDK](https://github.com/shipstatic/ship)** | `npx @shipstatic/ship ./dist` |
|
|
183
|
+
| **[VS Code](https://marketplace.visualstudio.com/items?itemName=shipstatic.shipstatic)** | Search "ShipStatic" in the Marketplace |
|
|
184
|
+
| **[Gemini CLI](https://github.com/shipstatic/plugin)** | `gemini extensions install https://github.com/shipstatic/plugin` |
|
|
185
|
+
| **[n8n](https://www.npmjs.com/package/n8n-nodes-shipstatic)** | Search "ShipStatic" in n8n's node panel |
|
|
186
|
+
| **[GitHub Action](https://github.com/shipstatic/action)** | `shipstatic/action@v2` |
|
|
187
|
+
| **[Agent Skill](https://www.shipstatic.com/SKILL.md)** | One file, for any skills-aware tool |
|
|
188
|
+
|
|
178
189
|
## License
|
|
179
190
|
|
|
180
191
|
MIT
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipstatic/mcp",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.1",
|
|
4
4
|
"mcpName": "com.shipstatic/mcp",
|
|
5
|
-
"description": "Deploy static websites from AI agents. Start with the hosted endpoint at mcp.shipstatic.com
|
|
5
|
+
"description": "Deploy static websites, landing pages, and prototypes instantly 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.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"sideEffects": [
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
"lint": "biome check .",
|
|
30
30
|
"format": "biome format --write .",
|
|
31
31
|
"smoke": "node smoke.mjs",
|
|
32
|
-
"coverage": "vitest --run --coverage"
|
|
32
|
+
"coverage": "vitest --run --coverage",
|
|
33
|
+
"check:package": "publint && attw --pack . --ignore-rules cjs-resolves-to-esm"
|
|
33
34
|
},
|
|
34
35
|
"files": [
|
|
35
36
|
"dist",
|
|
@@ -52,7 +53,7 @@
|
|
|
52
53
|
"web-hosting",
|
|
53
54
|
"website"
|
|
54
55
|
],
|
|
55
|
-
"homepage": "https://
|
|
56
|
+
"homepage": "https://shipstatic.com",
|
|
56
57
|
"repository": {
|
|
57
58
|
"type": "git",
|
|
58
59
|
"url": "git+https://github.com/shipstatic/mcp.git"
|
|
@@ -72,10 +73,12 @@
|
|
|
72
73
|
"zod": "^4.4.3"
|
|
73
74
|
},
|
|
74
75
|
"devDependencies": {
|
|
76
|
+
"@arethetypeswrong/cli": "^0.18.2",
|
|
75
77
|
"@biomejs/biome": "2.5.5",
|
|
76
78
|
"@types/node": "^25.9.5",
|
|
77
79
|
"@vitest/coverage-v8": "4.1.10",
|
|
78
80
|
"esbuild": "^0.25.12",
|
|
81
|
+
"publint": "^0.3.24",
|
|
79
82
|
"typescript": "^6.0.3",
|
|
80
83
|
"vitest": "4.1.10"
|
|
81
84
|
},
|