@tac0de/project-bootstrap-mcp 1.1.1 → 1.1.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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
2
|
+
const startServer = require('../dist/server').default;
|
|
3
3
|
|
|
4
|
-
function parsePort(args
|
|
4
|
+
function parsePort(args, envPort) {
|
|
5
5
|
let portValue = envPort || '4000';
|
|
6
6
|
args.forEach((arg, index, list) => {
|
|
7
7
|
if (arg === '--port' && list[index + 1]) {
|
|
File without changes
|
package/dist/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tac0de/project-bootstrap-mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Project Bootstrap MCP API tooling for launching MCP bootstrap definitions and documentation.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"project-bootstrap-mcp": "
|
|
7
|
+
"project-bootstrap-mcp": "bin/project-bootstrap-mcp.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc",
|
|
11
|
-
"start": "npm run build && node ./
|
|
11
|
+
"start": "npm run build && node ./bin/project-bootstrap-mcp.js",
|
|
12
12
|
"test": "node --test -r ts-node/register test/store.test.ts"
|
|
13
13
|
},
|
|
14
14
|
"keywords": [
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tac0de/project-bootstrap-mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Project Bootstrap MCP API tooling for launching MCP bootstrap definitions and documentation.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"project-bootstrap-mcp": "
|
|
7
|
+
"project-bootstrap-mcp": "bin/project-bootstrap-mcp.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc",
|
|
11
|
-
"start": "npm run build && node ./
|
|
11
|
+
"start": "npm run build && node ./bin/project-bootstrap-mcp.js",
|
|
12
12
|
"test": "node --test -r ts-node/register test/store.test.ts"
|
|
13
13
|
},
|
|
14
14
|
"keywords": [
|