@muggleai/mcp 1.0.4 → 1.0.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muggleai/mcp",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Unified MCP server for Muggle AI - Cloud QA and Local Testing tools",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -132,7 +132,7 @@ async function downloadElectronApp() {
132
132
  const baseUrl = config.downloadBaseUrl || "https://github.com/multiplex-ai/muggle-ai-mcp/releases/download";
133
133
 
134
134
  const binaryName = getBinaryName();
135
- const downloadUrl = `${baseUrl}/electron-app-v${version}/${binaryName}`;
135
+ const downloadUrl = `${baseUrl}/v${version}/${binaryName}`;
136
136
 
137
137
  const appDir = getElectronAppDir();
138
138
  const versionDir = join(appDir, version);