@useconstructor/mcp 1.0.0 → 1.0.1

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.
@@ -2,8 +2,8 @@
2
2
  const { spawnSync } = require('child_process');
3
3
  const path = require('path');
4
4
 
5
- const tsx = path.join(__dirname, '..', 'node_modules', '.bin', 'tsx');
6
- const server = path.join(__dirname, '..', 'src', 'mcp', 'server-stdio.ts');
5
+ const tsx = path.join(__dirname, 'node_modules', '.bin', 'tsx');
6
+ const server = path.join(__dirname, 'src', 'mcp', 'server-stdio.ts');
7
7
 
8
8
  const result = spawnSync(tsx, [server], {
9
9
  stdio: 'inherit',
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@useconstructor/mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
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": {
7
- "constructor-mcp": "./bin/constructor-mcp.js"
7
+ "constructor-mcp": "constructor-mcp.js"
8
8
  },
9
9
  "scripts": {
10
10
  "start": "node dist/index.js",