@hubspot/cli 8.0.8-experimental.2 → 8.0.8-experimental.3
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/lib/mcp/setup.js +1 -5
- package/package.json +1 -1
package/lib/mcp/setup.js
CHANGED
|
@@ -227,12 +227,8 @@ export async function setupClaudeCode(mcpCommand = defaultMcpCommand) {
|
|
|
227
227
|
const commandWithAgent = buildCommandWithAgentString(mcpCommand, claudeCode);
|
|
228
228
|
const configObject = {
|
|
229
229
|
type: 'stdio',
|
|
230
|
-
|
|
231
|
-
args: commandWithAgent.args,
|
|
230
|
+
...commandWithAgent,
|
|
232
231
|
};
|
|
233
|
-
if (commandWithAgent.env) {
|
|
234
|
-
configObject.env = commandWithAgent.env;
|
|
235
|
-
}
|
|
236
232
|
const mcpConfig = JSON.stringify(configObject);
|
|
237
233
|
const { stdout } = await execAsync('claude mcp list');
|
|
238
234
|
if (stdout.includes(mcpServerName)) {
|
package/package.json
CHANGED