@shipstatic/mcp 0.1.9 → 0.1.10

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
@@ -1,8 +1,8 @@
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
 
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
@@ -10,7 +10,7 @@ export function createServer(ship) {
10
10
  name: 'shipstatic',
11
11
  version: '0.1.9',
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.10",
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",