@zenitheditor/zenith-mcp 0.0.3 → 0.0.4

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.
Files changed (2) hide show
  1. package/README.md +33 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # @zenitheditor/zenith-mcp
2
+
3
+ NPM launcher for the Zenith MCP server.
4
+
5
+ This package installs the matching prebuilt `zenith` binary from GitHub Releases and exposes a
6
+ `zenith-mcp` command for MCP clients.
7
+
8
+ ## Usage
9
+
10
+ Run the MCP server:
11
+
12
+ ```bash
13
+ npx -y @zenitheditor/zenith-mcp
14
+ ```
15
+
16
+ Pass arguments through to the underlying `zenith` binary:
17
+
18
+ ```bash
19
+ npx -y @zenitheditor/zenith-mcp --help
20
+ ```
21
+
22
+ Install globally:
23
+
24
+ ```bash
25
+ npm install -g @zenitheditor/zenith-mcp
26
+ zenith-mcp
27
+ ```
28
+
29
+ ## MCP Registry
30
+
31
+ MCP Registry name: `mcp-name: io.github.zenitheditor/zenith`
32
+
33
+ The main project is at https://github.com/zenitheditor/zenith.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenitheditor/zenith-mcp",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "MCP launcher for the Zenith deterministic .zen design engine.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/zenitheditor/zenith#readme",