rhombus-node-mcp 0.1.20 → 0.1.21
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/dist/logger.js +2 -2
- package/package.json +4 -3
package/dist/logger.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import fs from "node:fs";
|
|
2
|
+
import path from "node:path";
|
|
1
3
|
import log4js from "log4js";
|
|
2
|
-
import path from "path";
|
|
3
|
-
import fs from "fs";
|
|
4
4
|
const baseDir = process.env.LOG_FOLDER ?? process.cwd();
|
|
5
5
|
const logDir = path.resolve(baseDir, "logs");
|
|
6
6
|
// Attempt to create log directory, but don't fail if we can't
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rhombus-node-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.21",
|
|
4
4
|
"description": "MCP server for Rhombus API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"clean": "rm -rf dist",
|
|
28
28
|
"build": "rm -rf dist && tsc && chmod +x dist/*.js",
|
|
29
29
|
"docker:build": "docker build -t rhombussystems/mcp-server-rhombus .",
|
|
30
|
+
"start": "node dist/index.js",
|
|
30
31
|
"prepare": "npm run build",
|
|
31
32
|
"watch": "npm run clean && tsc --watch",
|
|
32
33
|
"generate-schemas": "npx tsx scripts/generate-zod-schemas.ts",
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
"dist"
|
|
45
46
|
],
|
|
46
47
|
"dependencies": {
|
|
47
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
48
|
+
"@modelcontextprotocol/sdk": "^1.21.1",
|
|
48
49
|
"axios": "^1.11.0",
|
|
49
50
|
"cheerio": "^1.1.2",
|
|
50
51
|
"chrono-node": "^2.8.0",
|
|
@@ -75,4 +76,4 @@
|
|
|
75
76
|
"engines": {
|
|
76
77
|
"node": ">=18"
|
|
77
78
|
}
|
|
78
|
-
}
|
|
79
|
+
}
|