@shipstatic/mcp 0.7.0-beta.1 → 1.0.0-beta.0
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/server.js +4 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -105,7 +105,7 @@ The hosted endpoint exposes `deployments_upload` only. The local install exposes
|
|
|
105
105
|
| `deployments_list` | List all deployments with their URLs, status, labels, and password protection state | |
|
|
106
106
|
| `deployments_get` | Get deployment details including URL, status, file count, size, labels, and password protection state | |
|
|
107
107
|
| `deployments_set` | Update the labels on a deployment for organization and filtering | |
|
|
108
|
-
| `
|
|
108
|
+
| `deployments_delete` | Permanently delete a deployment and all its files | |
|
|
109
109
|
|
|
110
110
|
### Domains
|
|
111
111
|
|
|
@@ -119,7 +119,7 @@ The hosted endpoint exposes `deployments_upload` only. The local install exposes
|
|
|
119
119
|
| `domains_share` | Get a shareable link so someone else can see the required DNS records |
|
|
120
120
|
| `domains_validate` | Check if a domain name is valid and available before connecting it |
|
|
121
121
|
| `domains_verify` | Check if DNS is configured correctly after you set up the records |
|
|
122
|
-
| `
|
|
122
|
+
| `domains_delete` | Permanently disconnect and delete a custom domain |
|
|
123
123
|
|
|
124
124
|
### Account
|
|
125
125
|
|
package/dist/server.js
CHANGED
|
@@ -87,7 +87,7 @@ export function createServer(ship) {
|
|
|
87
87
|
.describe('Labels to set. Replaces all existing labels. Pass empty array to clear.'),
|
|
88
88
|
},
|
|
89
89
|
}, ({ deployment, labels }) => call(() => ship.deployments.set(deployment, { labels })));
|
|
90
|
-
server.registerTool('
|
|
90
|
+
server.registerTool('deployments_delete', {
|
|
91
91
|
description: 'Permanently delete a deployment and its files. You MUST confirm with the user before calling this tool, referencing the deployment.',
|
|
92
92
|
annotations: DESTRUCTIVE,
|
|
93
93
|
inputSchema: {
|
|
@@ -95,7 +95,7 @@ export function createServer(ship) {
|
|
|
95
95
|
.string()
|
|
96
96
|
.describe('Deployment hostname to delete (e.g. "happy-cat-abc1234.shipstatic.com")'),
|
|
97
97
|
},
|
|
98
|
-
}, ({ deployment }) => call(() => ship.deployments.
|
|
98
|
+
}, ({ deployment }) => call(() => ship.deployments.delete(deployment)));
|
|
99
99
|
// Domains
|
|
100
100
|
server.registerTool('domains_set', {
|
|
101
101
|
description: 'Create or update a custom domain. Can reserve a name (omit deployment), link it to a deployment, switch deployments, or update labels. After creating, call domains_records and show the DNS records to the user.',
|
|
@@ -170,13 +170,13 @@ export function createServer(ship) {
|
|
|
170
170
|
.describe('Domain name to verify DNS for. Must be a domain previously created with domains_set.'),
|
|
171
171
|
},
|
|
172
172
|
}, ({ domain }) => call(() => ship.domains.verify(domain)));
|
|
173
|
-
server.registerTool('
|
|
173
|
+
server.registerTool('domains_delete', {
|
|
174
174
|
description: 'Permanently delete a domain. You MUST confirm with the user before calling this tool, referencing the domain name.',
|
|
175
175
|
annotations: DESTRUCTIVE,
|
|
176
176
|
inputSchema: {
|
|
177
177
|
domain: z.string().describe('Domain name to delete (e.g. "www.example.com")'),
|
|
178
178
|
},
|
|
179
|
-
}, ({ domain }) => call(() => ship.domains.
|
|
179
|
+
}, ({ domain }) => call(() => ship.domains.delete(domain)));
|
|
180
180
|
// Debugging
|
|
181
181
|
server.registerTool('whoami', {
|
|
182
182
|
description: 'Show authenticated account details including email, plan, and usage.',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipstatic/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-beta.0",
|
|
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",
|
|
@@ -54,16 +54,16 @@
|
|
|
54
54
|
"author": "ShipStatic",
|
|
55
55
|
"license": "MIT",
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
58
|
-
"@shipstatic/ship": "2.0.0-beta.
|
|
59
|
-
"zod": "^4.3
|
|
57
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
58
|
+
"@shipstatic/ship": "2.0.0-beta.15",
|
|
59
|
+
"zod": "^4.4.3"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@biomejs/biome": "2.5.5",
|
|
63
|
-
"@shipstatic/types": "2.5.0-beta.
|
|
64
|
-
"@types/node": "^25.
|
|
63
|
+
"@shipstatic/types": "2.5.0-beta.18",
|
|
64
|
+
"@types/node": "^25.9.5",
|
|
65
65
|
"@vitest/coverage-v8": "4.1.10",
|
|
66
|
-
"typescript": "^6.0.
|
|
66
|
+
"typescript": "^6.0.3",
|
|
67
67
|
"vitest": "4.1.10"
|
|
68
68
|
},
|
|
69
69
|
"packageManager": "pnpm@10.12.4"
|