@workfeed/init 0.3.3 → 0.3.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/bin/cli.js +1 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -221,7 +221,7 @@ function claudeIsInstalled() {
|
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
function installMcp(serverUrl, token, scope) {
|
|
224
|
-
const scopeFlag = scope === 'project' ? ' --scope project' : '';
|
|
224
|
+
const scopeFlag = scope === 'project' ? ' --scope project' : ' --scope user';
|
|
225
225
|
const cmd = `claude mcp add --transport http${scopeFlag} ${MCP_NAME} ${serverUrl}/mcp --header "Authorization: Bearer ${token}"`;
|
|
226
226
|
|
|
227
227
|
console.log(` Running: claude mcp add --transport http ${MCP_NAME} ${serverUrl}/mcp`);
|