@shipstatic/mcp 0.1.10 → 0.1.12
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/LICENSE +1 -1
- package/README.md +5 -1
- package/dist/server.js +1 -1
- package/package.json +3 -3
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -6,6 +6,10 @@ ShipStatic is a simpler alternative to Vercel and Netlify, specialized for stati
|
|
|
6
6
|
|
|
7
7
|
Works with Claude Code, Cursor, VS Code Copilot, and any MCP-compatible client.
|
|
8
8
|
|
|
9
|
+
<a href="https://glama.ai/mcp/servers/@shipstatic/shipstatic">
|
|
10
|
+
<img width="380" height="200" src="https://glama.ai/mcp/servers/@shipstatic/shipstatic/badge" alt="shipstatic MCP server" />
|
|
11
|
+
</a>
|
|
12
|
+
|
|
9
13
|
## Setup
|
|
10
14
|
|
|
11
15
|
### Claude Code
|
|
@@ -70,4 +74,4 @@ Published to the [MCP Registry](https://modelcontextprotocol.io) as [`com.shipst
|
|
|
70
74
|
|
|
71
75
|
## License
|
|
72
76
|
|
|
73
|
-
MIT
|
|
77
|
+
MIT
|
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.12',
|
|
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.12",
|
|
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",
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@modelcontextprotocol/sdk": "^1.27.0",
|
|
45
|
-
"@shipstatic/ship": "^0.7.
|
|
45
|
+
"@shipstatic/ship": "^0.7.18",
|
|
46
46
|
"zod": "^4.3.6"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@shipstatic/types": "^0.7.1",
|
|
50
50
|
"@types/node": "^20.0.0",
|
|
51
|
-
"typescript": "^5.9.3",
|
|
52
51
|
"husky": "^9.1.7",
|
|
52
|
+
"typescript": "^5.9.3",
|
|
53
53
|
"vitest": "^3.2.4"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|