zefiro 0.6.2 → 0.7.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 +8 -3
- package/dist/App-mnr9t2xc.js +24396 -0
- package/dist/cli-s9vghrvs.js +13689 -0
- package/dist/cli.js +15 -17
- package/dist/index.js +1 -1
- package/dist/mcp.js +238 -22
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -145,15 +145,20 @@ zefiro mcp
|
|
|
145
145
|
|
|
146
146
|
**Claude Code:**
|
|
147
147
|
```bash
|
|
148
|
-
claude mcp add zefiro -- zefiro-mcp # project-scoped
|
|
149
|
-
claude mcp add zefiro -s user -- zefiro-mcp # global
|
|
148
|
+
claude mcp add zefiro -- npx -y zefiro-mcp # project-scoped
|
|
149
|
+
claude mcp add zefiro -s user -- npx -y zefiro-mcp # global
|
|
150
150
|
```
|
|
151
151
|
|
|
152
152
|
**Claude Desktop / other clients:**
|
|
153
153
|
```json
|
|
154
154
|
{
|
|
155
155
|
"mcpServers": {
|
|
156
|
-
"zefiro": {
|
|
156
|
+
"zefiro": {
|
|
157
|
+
"type": "stdio",
|
|
158
|
+
"command": "npx",
|
|
159
|
+
"args": ["-y", "zefiro-mcp"],
|
|
160
|
+
"env": {}
|
|
161
|
+
}
|
|
157
162
|
}
|
|
158
163
|
}
|
|
159
164
|
```
|