ellmos-servercommander-mcp 0.1.0-alpha.7 → 0.1.0-alpha.8
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.
|
@@ -9,6 +9,11 @@ if (process.argv.includes("--version")) {
|
|
|
9
9
|
process.exit(0);
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
// Update-Hinweis nur im interaktiven Terminal (nie im MCP-/Pipe-Betrieb); update-notifier v7 ist ESM -> dynamic import
|
|
13
|
+
if (process.stdout.isTTY) {
|
|
14
|
+
import("update-notifier").then(({ default: notifier }) => notifier({ pkg }).notify()).catch(() => {});
|
|
15
|
+
}
|
|
16
|
+
|
|
12
17
|
const python = process.env.PYTHON || (process.platform === "win32" ? "python" : "python3");
|
|
13
18
|
const srcPath = path.resolve(__dirname, "..", "src");
|
|
14
19
|
const env = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ellmos-servercommander-mcp",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.8",
|
|
4
4
|
"mcpName": "io.github.ellmos-ai/ellmos-servercommander-mcp",
|
|
5
5
|
"description": "Alpha MCP server for server operations: deploy dry-runs, mail status, log analysis, and health checks.",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"assets/",
|
|
22
22
|
"bin/",
|
|
23
23
|
"config/",
|
|
24
|
-
"src/**/*.py",
|
|
25
|
-
"README.md",
|
|
26
|
-
"README_de.md",
|
|
27
|
-
"KONZEPT.md",
|
|
28
|
-
"CHANGELOG.md",
|
|
29
|
-
"pyproject.toml",
|
|
24
|
+
"src/**/*.py",
|
|
25
|
+
"README.md",
|
|
26
|
+
"README_de.md",
|
|
27
|
+
"KONZEPT.md",
|
|
28
|
+
"CHANGELOG.md",
|
|
29
|
+
"pyproject.toml",
|
|
30
30
|
"server.json",
|
|
31
31
|
"llms.txt",
|
|
32
32
|
"LICENSE"
|
|
@@ -56,5 +56,8 @@
|
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public",
|
|
58
58
|
"tag": "alpha"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"update-notifier": "^7.3.1"
|
|
59
62
|
}
|
|
60
63
|
}
|