@shipstatic/mcp 0.5.0 → 0.5.1

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
@@ -4,9 +4,8 @@ ShipStatic MCP — deploy static websites, landing pages, and prototypes from AI
4
4
 
5
5
  **One URL. Your agent ships.**
6
6
 
7
- <a href="https://glama.ai/mcp/servers/@shipstatic/shipstatic">
8
- <img width="380" height="200" src="https://glama.ai/mcp/servers/@shipstatic/shipstatic/badge" alt="shipstatic MCP server" />
9
- </a>
7
+ [![smithery badge](https://smithery.ai/badge/shipstatic/ship)](https://smithery.ai/servers/shipstatic/ship)
8
+ [![glama badge](https://img.shields.io/badge/glama-MCP%20server-1f7ade)](https://glama.ai/mcp/servers/shipstatic/mcp)
10
9
 
11
10
  ## Hosted — no install
12
11
 
package/dist/server.js CHANGED
@@ -9,7 +9,7 @@ const READ = { readOnlyHint: true, destructiveHint: false, idempotentHint: true,
9
9
  const CREATE = { readOnlyHint: false, destructiveHint: false, ...OPEN_WORLD };
10
10
  const WRITE = { readOnlyHint: false, destructiveHint: false, idempotentHint: true, ...OPEN_WORLD };
11
11
  const DESTRUCTIVE = { readOnlyHint: false, destructiveHint: true, idempotentHint: true, ...OPEN_WORLD };
12
- const INSTRUCTIONS = `ShipStatic deploys static websites instantly. No account required.
12
+ const INSTRUCTIONS = `ShipStatic deploys static websites instantly. Free, no account required.
13
13
 
14
14
  To deploy: call deployments_upload with the build output directory path. The site is live immediately. To make the site private, pass \`password\` — visitors must unlock before viewing, including on any custom domains pointing at it.
15
15
 
@@ -31,7 +31,7 @@ export function createServer(ship) {
31
31
  });
32
32
  // Deployments
33
33
  server.registerTool('deployments_upload', {
34
- description: 'Deploy a static site instantly. No account or API key required. Returns the live URL, file count, and size. Without SHIP_API_KEY, the response includes a claim URL (site expires in 3 days) — always show both the deployment URL and claim URL to the user. To make the site private, pass `password`; always show the password to the user if you set one.',
34
+ description: 'Deploy a static site instantly free, no account or API key required. Returns the live URL, file count, and size. Without SHIP_API_KEY, the response includes a claim URL (site expires in 3 days) — always show both the deployment URL and claim URL to the user. To make the site private, pass `password`; always show the password to the user if you set one.',
35
35
  annotations: CREATE,
36
36
  inputSchema: {
37
37
  path: z.string().describe('Absolute path to the build output directory to deploy (e.g. "/Users/me/project/dist")'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/mcp",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
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",