mcp-cron 0.4.0 → 0.5.1
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/README.md +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ 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
|
|
12
|
+
- Multi-instance safe — multiple instances can share the same database without duplicate execution. If you need isolated instances instead, use a different `--db-path` for each.
|
|
13
13
|
|
|
14
14
|
## Installation
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-cron",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
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.
|
|
15
|
-
"mcp-cron-darwin-arm64": "0.
|
|
16
|
-
"mcp-cron-linux-amd64": "0.
|
|
17
|
-
"mcp-cron-linux-arm64": "0.
|
|
18
|
-
"mcp-cron-windows-amd64": "0.
|
|
19
|
-
"mcp-cron-windows-arm64": "0.
|
|
14
|
+
"mcp-cron-darwin-amd64": "0.5.1",
|
|
15
|
+
"mcp-cron-darwin-arm64": "0.5.1",
|
|
16
|
+
"mcp-cron-linux-amd64": "0.5.1",
|
|
17
|
+
"mcp-cron-linux-arm64": "0.5.1",
|
|
18
|
+
"mcp-cron-windows-amd64": "0.5.1",
|
|
19
|
+
"mcp-cron-windows-arm64": "0.5.1"
|
|
20
20
|
}
|
|
21
21
|
}
|