@shipstatic/mcp 0.7.0-beta.0 → 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 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 token — permanent deployments
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 token at [my.shipstatic.com/api-key](https://my.shipstatic.com/api-key):
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
@@ -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
- | `deployments_remove` | Permanently remove a deployment and all its files | |
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
- | `domains_remove` | Permanently disconnect and remove a custom domain |
122
+ | `domains_delete` | Permanently disconnect and delete a custom domain |
123
123
 
124
124
  ### Account
125
125
 
package/dist/index.js CHANGED
File without changes
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('deployments_remove', {
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.remove(deployment)));
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('domains_remove', {
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.remove(domain)));
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.7.0-beta.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",
@@ -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"
@@ -44,25 +54,17 @@
44
54
  "author": "ShipStatic",
45
55
  "license": "MIT",
46
56
  "dependencies": {
47
- "@modelcontextprotocol/sdk": "^1.29.0",
48
- "@shipstatic/ship": "2.0.0-beta.2",
49
- "zod": "^4.3.6"
57
+ "@modelcontextprotocol/sdk": "^1.30.0",
58
+ "@shipstatic/ship": "2.0.0-beta.15",
59
+ "zod": "^4.4.3"
50
60
  },
51
61
  "devDependencies": {
52
62
  "@biomejs/biome": "2.5.5",
53
- "@shipstatic/types": "2.5.0-beta.0",
54
- "@types/node": "^25.6.0",
63
+ "@shipstatic/types": "2.5.0-beta.18",
64
+ "@types/node": "^25.9.5",
55
65
  "@vitest/coverage-v8": "4.1.10",
56
- "typescript": "^6.0.2",
66
+ "typescript": "^6.0.3",
57
67
  "vitest": "4.1.10"
58
68
  },
59
- "scripts": {
60
- "build": "tsc",
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
+ }