@greennx/sales-mcp 1.4.0 → 1.5.0

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.
@@ -134,6 +134,10 @@ function resolveConfigPath(tool) {
134
134
  case "claude-code-user":
135
135
  if (IS_WIN) return join(process.env["USERPROFILE"] ?? home, ".claude.json");
136
136
  return join(home, ".claude.json");
137
+ case "vscode":
138
+ if (IS_MAC) return join(home, "Library", "Application Support", "Code", "User", "mcp.json");
139
+ if (IS_WIN) return join(appdata, "Code", "User", "mcp.json");
140
+ return join(home, ".config", "Code", "User", "mcp.json");
137
141
  case "gemini-cli":
138
142
  if (IS_WIN) return join(process.env["USERPROFILE"] ?? home, ".gemini", "settings.json");
139
143
  return join(home, ".gemini", "settings.json");
@@ -292,6 +296,7 @@ if (command === "setup") {
292
296
  { id: "cursor", name: "Cursor", restart: 'Settings > MCP > click "Refresh".' },
293
297
  { id: "antigravity", name: "Antigravity (Windsurf)", restart: 'Manage MCP Servers > click "Refresh".' },
294
298
  { id: "cline", name: "Cline (VS Code)", restart: 'Cline sidebar > MCP Servers > click "Refresh".' },
299
+ { id: "vscode", name: "VS Code (Copilot)", restart: 'Reload VS Code window (Ctrl+Shift+P \u2192 "Reload Window").' },
295
300
  { id: "gemini-cli", name: "Gemini CLI", restart: "Restart Gemini CLI." },
296
301
  { id: "codex", name: "Codex CLI", restart: "Restart Codex CLI.", toml: true }
297
302
  ];
@@ -389,6 +394,7 @@ if (command === "setup") {
389
394
  { id: "cursor", name: "Cursor" },
390
395
  { id: "antigravity", name: "Antigravity (Windsurf)" },
391
396
  { id: "cline", name: "Cline (VS Code)" },
397
+ { id: "vscode", name: "VS Code (Copilot)" },
392
398
  { id: "gemini-cli", name: "Gemini CLI" },
393
399
  { id: "codex", name: "Codex CLI", toml: true }
394
400
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@greennx/sales-mcp",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "MCP server for AI-generated landing pages on the Greenn Sales platform",
5
5
  "type": "module",
6
6
  "bin": {