@proplandev/mcp 1.0.0 → 1.0.2

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/cli.js +7 -0
  2. package/package.json +3 -3
package/cli.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+ // Entry point — routes 'init' to the setup wizard, everything else starts the MCP server
3
+ if (process.argv[2] === 'init') {
4
+ await import('./bin/init.js');
5
+ } else {
6
+ await import('./index.js');
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proplandev/mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server for Claude Code — persistent project memory, session continuity, and structural repo analysis",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -8,8 +8,7 @@
8
8
  "node": ">=18"
9
9
  },
10
10
  "bin": {
11
- "proplan-init": "bin/init.js",
12
- "proplan-mcp": "index.js"
11
+ "proplan-mcp": "./cli.js"
13
12
  },
14
13
  "scripts": {
15
14
  "start": "node index.js",
@@ -17,6 +16,7 @@
17
16
  "test": "node --experimental-vm-modules node_modules/.bin/jest --testPathPatterns=tests/"
18
17
  },
19
18
  "files": [
19
+ "cli.js",
20
20
  "index.js",
21
21
  "bin/",
22
22
  "adapters/",