mcp-cron 0.8.1 → 0.8.2
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
|
@@ -244,7 +244,7 @@ The server exposes several tools through the MCP protocol:
|
|
|
244
244
|
4. `add_ai_task` - Adds a new AI (LLM) task with a prompt (provide `schedule` for recurring, or omit for on-demand)
|
|
245
245
|
5. `update_task` - Updates an existing task
|
|
246
246
|
6. `remove_task` - Removes a task by ID
|
|
247
|
-
7. `run_task` -
|
|
247
|
+
7. `run_task` - Executes a task by ID, waits for completion, and returns the result (for on-demand tasks or ad-hoc runs of scheduled tasks)
|
|
248
248
|
8. `enable_task` - Enables a task so it runs on its schedule or can be triggered via `run_task`
|
|
249
249
|
9. `disable_task` - Disables a task so it stops running and cannot be triggered
|
|
250
250
|
10. `get_task_result` - Gets execution results for a task (latest by default, or recent history with `limit`)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-cron",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.2",
|
|
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.8.
|
|
15
|
-
"mcp-cron-darwin-arm64": "0.8.
|
|
16
|
-
"mcp-cron-linux-amd64": "0.8.
|
|
17
|
-
"mcp-cron-linux-arm64": "0.8.
|
|
18
|
-
"mcp-cron-windows-amd64": "0.8.
|
|
19
|
-
"mcp-cron-windows-arm64": "0.8.
|
|
14
|
+
"mcp-cron-darwin-amd64": "0.8.2",
|
|
15
|
+
"mcp-cron-darwin-arm64": "0.8.2",
|
|
16
|
+
"mcp-cron-linux-amd64": "0.8.2",
|
|
17
|
+
"mcp-cron-linux-arm64": "0.8.2",
|
|
18
|
+
"mcp-cron-windows-amd64": "0.8.2",
|
|
19
|
+
"mcp-cron-windows-arm64": "0.8.2"
|
|
20
20
|
}
|
|
21
21
|
}
|