gemini-design-mcp 3.6.11 → 3.6.13

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.
@@ -1,5 +1,5 @@
1
1
  // API Proxy endpoint
2
- const PROXY_URL = "https://brave-turtle-253.convex.site/v1/generate";
2
+ const PROXY_URL = "https://dashing-alpaca-785.convex.site/v1/generate";
3
3
  // Default model - Gemini 3 Flash Preview
4
4
  export const DEFAULT_MODEL = "gemini-3-flash-preview";
5
5
  // Get and validate API key
@@ -24,9 +24,9 @@ export const createFrontendSchema = {
24
24
  }).describe("The selected design vibe"),
25
25
  }).optional().describe("Design system with selected vibe. REQUIRED for new projects without existing design. " +
26
26
  "Call generate_vibes first, user selects, then pass the selection here."),
27
- writeFile: z.boolean().default(true).describe("Write the file directly to disk instead of returning the code. " +
27
+ writeFile: z.boolean().default(false).describe("Write the file directly to disk instead of returning the code. " +
28
28
  "Returns a confirmation message instead of the full code, keeping context lightweight. " +
29
- "Defaults to true."),
29
+ "Defaults to false."),
30
30
  };
31
31
  export async function createFrontend(params) {
32
32
  const { request, filePath, techStack, context, designSystem, writeFile } = params;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemini-design-mcp",
3
- "version": "3.6.11",
3
+ "version": "3.6.13",
4
4
  "description": "MCP server that uses Gemini 3 Pro for frontend/design code generation",
5
5
  "main": "build/index.js",
6
6
  "bin": {