@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.
- package/README.md +33 -0
- 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