@shipstatic/mcp 0.1.8 → 0.1.9
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 +11 -1
- package/dist/server.js +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,11 +1,21 @@
|
|
|
1
1
|
# @shipstatic/mcp
|
|
2
2
|
|
|
3
|
-
MCP server for [Shipstatic](https://shipstatic.com)
|
|
3
|
+
MCP server for [Shipstatic](https://shipstatic.com) - deploy and manage static sites from AI agents.
|
|
4
|
+
|
|
5
|
+
Shipstatic is a simpler alternative to Vercel and Netlify, specialized for static website hosting. No build steps, no framework lock-in - just upload your files and get a URL.
|
|
4
6
|
|
|
5
7
|
Works with Claude Code, Cursor, VS Code Copilot, and any MCP-compatible client.
|
|
6
8
|
|
|
7
9
|
## Setup
|
|
8
10
|
|
|
11
|
+
### Claude Code
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
claude mcp add shipstatic -e SHIP_API_KEY=ship-... -- npx @shipstatic/mcp
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### Other MCP clients
|
|
18
|
+
|
|
9
19
|
Add to your MCP client configuration:
|
|
10
20
|
|
|
11
21
|
```json
|
package/dist/server.js
CHANGED
|
@@ -8,7 +8,7 @@ const DESTRUCTIVE = { destructiveHint: true, idempotentHint: true, ...OPEN_WORLD
|
|
|
8
8
|
export function createServer(ship) {
|
|
9
9
|
const server = new McpServer({
|
|
10
10
|
name: 'shipstatic',
|
|
11
|
-
version: '0.1.
|
|
11
|
+
version: '0.1.9',
|
|
12
12
|
}, {
|
|
13
13
|
instructions: 'Deploy a static site to Shipstatic and link it to your domain. To deploy, call deployments_upload with the path to your build output directory. To set up a custom domain, first call domains_validate to check the name, then domains_set to link it to a deployment, then domains_records to get the required DNS records. After DNS is configured, call domains_verify to trigger verification.',
|
|
14
14
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipstatic/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"mcpName": "com.shipstatic/mcp",
|
|
5
5
|
"description": "MCP server for Shipstatic — deploy and manage static sites from AI agents",
|
|
6
6
|
"type": "module",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"@shipstatic/types": "^0.7.1",
|
|
50
50
|
"@types/node": "^20.0.0",
|
|
51
51
|
"typescript": "^5.9.3",
|
|
52
|
+
"husky": "^9.1.7",
|
|
52
53
|
"vitest": "^3.2.4"
|
|
53
54
|
},
|
|
54
55
|
"scripts": {
|