mcp-cron 0.5.3 → 0.5.4

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/README.md +4 -3
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -9,7 +9,8 @@ Model Context Protocol (MCP) server for scheduling and managing tasks through a
9
9
  - [Manage tasks](#available-mcp-tools) via MCP protocol
10
10
  - Task execution with command output capture
11
11
  - Task persistence across restarts (SQLite)
12
- - Multi-instance safe — multiple instances can share the same database without duplicate execution. The first instance per `--db-path` becomes the **primary** (keeps the scheduler alive); subsequent instances are **secondary** (serve their request and exit). If you need isolated instances, use a different `--db-path` for each.
12
+ - Multi-instance safe — multiple instances can share the same database without duplicate execution
13
+ - Support multiple isolated instances with different `--db-path`
13
14
 
14
15
  ## Installation
15
16
 
@@ -185,8 +186,8 @@ The following environment variables are supported:
185
186
  | `MCP_CRON_SERVER_ADDRESS` | The address to bind the server to | `localhost` |
186
187
  | `MCP_CRON_SERVER_PORT` | The port to bind the server to | `8080` |
187
188
  | `MCP_CRON_SERVER_TRANSPORT` | Transport mode: `sse` or `stdio` | `sse` |
188
- | `MCP_CRON_SERVER_NAME` | Server name | `mcp-cron` |
189
- | `MCP_CRON_SERVER_VERSION` | Server version | `dev` |
189
+ | `MCP_CRON_SERVER_NAME` | **Deprecated** — ignored; the server name is fixed to ensure self-reference detection works correctly | - |
190
+ | `MCP_CRON_SERVER_VERSION` | **Deprecated** — ignored; version is set at build time via ldflags | - |
190
191
  | `MCP_CRON_SCHEDULER_DEFAULT_TIMEOUT` | Default timeout for task execution | `10m` |
191
192
  | `MCP_CRON_LOGGING_LEVEL` | Logging level: `debug`, `info`, `warn`, `error`, `fatal` | `info` |
192
193
  | `MCP_CRON_LOGGING_FILE` | Log file path | stdout |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-cron",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "MCP server for cron task scheduling (shell commands and AI prompts)",
5
5
  "license": "AGPL-3.0-only",
6
6
  "bin": {
@@ -11,11 +11,11 @@
11
11
  "url": "git+https://github.com/jolks/mcp-cron.git"
12
12
  },
13
13
  "optionalDependencies": {
14
- "mcp-cron-darwin-amd64": "0.5.3",
15
- "mcp-cron-darwin-arm64": "0.5.3",
16
- "mcp-cron-linux-amd64": "0.5.3",
17
- "mcp-cron-linux-arm64": "0.5.3",
18
- "mcp-cron-windows-amd64": "0.5.3",
19
- "mcp-cron-windows-arm64": "0.5.3"
14
+ "mcp-cron-darwin-amd64": "0.5.4",
15
+ "mcp-cron-darwin-arm64": "0.5.4",
16
+ "mcp-cron-linux-amd64": "0.5.4",
17
+ "mcp-cron-linux-arm64": "0.5.4",
18
+ "mcp-cron-windows-amd64": "0.5.4",
19
+ "mcp-cron-windows-arm64": "0.5.4"
20
20
  }
21
21
  }