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 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": { "command": "zefiro-mcp" }
156
+ "zefiro": {
157
+ "type": "stdio",
158
+ "command": "npx",
159
+ "args": ["-y", "zefiro-mcp"],
160
+ "env": {}
161
+ }
157
162
  }
158
163
  }
159
164
  ```