@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.
Files changed (2) hide show
  1. package/lib/mcp/setup.js +1 -5
  2. 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
- command: commandWithAgent.command,
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubspot/cli",
3
- "version": "8.0.8-experimental.2",
3
+ "version": "8.0.8-experimental.3",
4
4
  "description": "The official CLI for developing on HubSpot",
5
5
  "license": "Apache-2.0",
6
6
  "repository": "https://github.com/HubSpot/hubspot-cli",