kiviui-mcp 1.0.7 → 1.0.8

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/dist/install.js +2 -2
  2. package/package.json +1 -1
package/dist/install.js CHANGED
@@ -60,9 +60,9 @@ export async function installForClient(client) {
60
60
  break;
61
61
  }
62
62
  case "vscode": {
63
- const configPath = path.join(process.cwd(), ".vscode", "cline_mcp_settings.json");
63
+ const configPath = path.join(process.cwd(), ".vscode", "mcp.json");
64
64
  await updateJsonConfig(configPath, serverName, MCP_SERVER_COMMAND, MCP_SERVER_ARGS);
65
- console.log(`Successfully configured Kivi UI MCP for VS Code (Cline) in ${configPath}`);
65
+ console.log(`Successfully configured Kivi UI MCP for VS Code in ${configPath}`);
66
66
  break;
67
67
  }
68
68
  case "antigravity":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kiviui-mcp",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Local MCP server for Kivi UI designed for Claude Desktop and VS Code",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",