@shipstatic/mcp 0.4.8 → 0.4.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 +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,16 @@ MCP server for [ShipStatic](https://shipstatic.com) — deploy static websites,
|
|
|
6
6
|
<img width="380" height="200" src="https://glama.ai/mcp/servers/@shipstatic/shipstatic/badge" alt="shipstatic MCP server" />
|
|
7
7
|
</a>
|
|
8
8
|
|
|
9
|
+
## No install? Use the hosted endpoint
|
|
10
|
+
|
|
11
|
+
For anonymous one-shot deploys, point your MCP client at:
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
https://mcp.shipstatic.com
|
|
15
|
+
```
|
|
16
|
+
|
|
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.
|
|
18
|
+
|
|
9
19
|
## Setup
|
|
10
20
|
|
|
11
21
|
### Claude Code
|
|
@@ -81,7 +91,7 @@ claude mcp add shipstatic -e SHIP_API_KEY=ship-... -- npx @shipstatic/mcp
|
|
|
81
91
|
| Tool | Description |
|
|
82
92
|
|------|-------------|
|
|
83
93
|
| `domains_set` | Connect a custom domain to your site, switch deployments, or update labels |
|
|
84
|
-
| `domains_list` | List all domains with their linked
|
|
94
|
+
| `domains_list` | List all domains with their linked deployment and verification status |
|
|
85
95
|
| `domains_get` | Get domain details including linked deployment, verification status, and labels |
|
|
86
96
|
| `domains_records` | Get the DNS records you need to configure at your DNS provider |
|
|
87
97
|
| `domains_dns` | Look up which DNS provider hosts a domain (e.g. Cloudflare, Namecheap) |
|
package/dist/server.js
CHANGED
|
@@ -76,7 +76,7 @@ export function createServer(ship) {
|
|
|
76
76
|
},
|
|
77
77
|
}, ({ domain, deployment, labels }) => call(() => ship.domains.set(domain, { deployment, labels })));
|
|
78
78
|
server.registerTool('domains_list', {
|
|
79
|
-
description: 'List all domains with their URLs, linked
|
|
79
|
+
description: 'List all domains with their URLs, linked deployment, and verification status.',
|
|
80
80
|
annotations: READ,
|
|
81
81
|
}, () => call(() => ship.domains.list()));
|
|
82
82
|
server.registerTool('domains_get', {
|
package/package.json
CHANGED