@zeroheight/mcp-server 1.0.0 → 1.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## Release notes
2
2
 
3
- ## [1.0.0](https://www.npmjs.com/package/@zeroheight/mcp-server/v/1.0.0) - 12th August 2025
3
+ ## [1.0.1](https://www.npmjs.com/package/@zeroheight/mcp-server/v/1.0.1) - 15th August 2025
4
+
5
+ - Fix startup when executing via npx
6
+
7
+ ## [1.0.0](https://www.npmjs.com/package/@zeroheight/mcp-server/v/1.0.0) - 15th August 2025
4
8
 
5
9
  - Create the zeroheight MCP server with support for retrieving styleguide navigation and page content.
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
3
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
3
4
  import packageJson from "../package.json" with { type: "json" };
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@zeroheight/mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP server for zeroheight",
5
5
  "type": "module",
6
6
  "bin": {
7
- "mcp-server": "./dist/index.js"
7
+ "mcp-server": "dist/index.js"
8
8
  },
9
9
  "scripts": {
10
10
  "build": "tsc && chmod 755 dist/index.js",