ellmos-servercommander-mcp 0.1.0-alpha.8 → 0.1.0-alpha.9

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/CHANGELOG.md CHANGED
@@ -1,9 +1,17 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to this project will be documented in this file.
4
-
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## 0.1.0-alpha.9 - 2026-06-17
6
+
7
+ ### Changed
8
+ - Add a TTY-guarded `update-notifier` check for interactive CLI starts while keeping MCP stdio output unchanged.
9
+
10
+ ### Fixed
11
+ - Align `package.json`, lockfile, `pyproject.toml`, Python `__version__`, and `server.json` metadata after the update-notifier release.
12
+
5
13
  ## 0.1.0-alpha.7 - 2026-06-13
6
-
14
+
7
15
  ### Fixed
8
16
  - `sc_health_check`: `urlopen()` runs in worker threads via `asyncio.to_thread` + `asyncio.gather`, so concurrent health checks no longer block the MCP event loop.
9
17
  - npm package file selection now includes only Python source files from `src/`, preventing local `__pycache__` bytecode from entering the tarball.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ellmos-servercommander-mcp",
3
- "version": "0.1.0-alpha.8",
3
+ "version": "0.1.0-alpha.9",
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",
package/pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "ellmos-servercommander-mcp"
7
- version = "0.1.0a7"
7
+ version = "0.1.0a9"
8
8
  description = "MCP server for server operations: deploy, mail, log analysis, health checks."
9
9
  readme = "README.md"
10
10
  license = "MIT"
package/server.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
3
  "name": "io.github.ellmos-ai/ellmos-servercommander-mcp",
4
- "version": "0.1.0-alpha.7",
4
+ "version": "0.1.0-alpha.9",
5
5
  "title": "ellmos ServerCommander",
6
6
  "description": "Alpha MCP server for server operations: deploy dry-runs, mail status diagnostics, Apache/Nginx access-log analysis, and HTTP health checks.",
7
7
  "websiteUrl": "https://github.com/ellmos-ai/ellmos-servercommander-mcp",
@@ -14,7 +14,7 @@
14
14
  {
15
15
  "registryType": "npm",
16
16
  "identifier": "ellmos-servercommander-mcp",
17
- "version": "0.1.0-alpha.7",
17
+ "version": "0.1.0-alpha.9",
18
18
  "transport": { "type": "stdio" },
19
19
  "runtimeHint": "npx"
20
20
  }
@@ -1,3 +1,3 @@
1
1
  """ellmos-servercommander-mcp - server operations via MCP."""
2
2
 
3
- __version__ = "0.1.0a7"
3
+ __version__ = "0.1.0a9"