@useconstructor/mcp 1.0.2 → 1.0.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.
package/README.md CHANGED
@@ -44,8 +44,7 @@ npm install -g @useconstructor/mcp
44
44
  "type": "stdio",
45
45
  "command": "constructor-mcp",
46
46
  "env": {
47
- "CONSTRUCTOR_API_KEY": "csk_your_key_here",
48
- "CONSTRUCTOR_API_URL": "https://constructor-api-prod.vercel.app"
47
+ "CONSTRUCTOR_API_KEY": "csk_your_key_here"
49
48
  }
50
49
  }
51
50
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@useconstructor/mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Constructor MCP server — build and deploy web apps from natural language via Claude Code",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -10,7 +10,7 @@ import {
10
10
  ListToolsRequestSchema,
11
11
  } from '@modelcontextprotocol/sdk/types.js';
12
12
 
13
- const API_BASE = process.env.CONSTRUCTOR_API_URL || 'http://localhost:4000';
13
+ const API_BASE = process.env.CONSTRUCTOR_API_URL || 'https://api.useconstructor.com';
14
14
  const API_KEY = process.env.CONSTRUCTOR_API_KEY || '';
15
15
 
16
16
  if (!API_KEY) {