@shipstatic/mcp 0.1.9 → 0.1.11

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 shipstatic
3
+ Copyright (c) 2026 ShipStatic
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,11 +1,15 @@
1
1
  # @shipstatic/mcp
2
2
 
3
- MCP server for [Shipstatic](https://shipstatic.com) - deploy and manage static sites from AI agents.
3
+ MCP server for [ShipStatic](https://shipstatic.com) - deploy and manage static sites from AI agents.
4
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.
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.
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/index.js CHANGED
@@ -21,7 +21,7 @@ async function main() {
21
21
  const server = createServer(new Ship({ apiKey }));
22
22
  const transport = new StdioServerTransport();
23
23
  await server.connect(transport);
24
- console.error('Shipstatic MCP Server running on stdio');
24
+ console.error('ShipStatic MCP Server running on stdio');
25
25
  }
26
26
  main().catch((error) => {
27
27
  console.error('Fatal error:', error);
package/dist/server.js CHANGED
@@ -8,9 +8,9 @@ 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.9',
11
+ version: '0.1.11',
12
12
  }, {
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.',
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
  });
15
15
  // Deployments
16
16
  server.registerTool('deployments_upload', {
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@shipstatic/mcp",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "mcpName": "com.shipstatic/mcp",
5
- "description": "MCP server for Shipstatic — deploy and manage static sites from AI agents",
5
+ "description": "MCP server for ShipStatic — deploy and manage static sites from AI agents",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
8
8
  "types": "./dist/index.d.ts",
@@ -42,14 +42,14 @@
42
42
  "license": "MIT",
43
43
  "dependencies": {
44
44
  "@modelcontextprotocol/sdk": "^1.27.0",
45
- "@shipstatic/ship": "^0.7.2",
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": {