mcp-cron 0.7.2 → 0.8.0

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 +1 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -248,6 +248,7 @@ The server exposes several tools through the MCP protocol:
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`)
251
+ 11. `query_task_result` - Runs a read-only SQL query against the database (SELECT only, capped at 1000 rows)
251
252
 
252
253
  ### Task Format
253
254
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-cron",
3
- "version": "0.7.2",
3
+ "version": "0.8.0",
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.7.2",
15
- "mcp-cron-darwin-arm64": "0.7.2",
16
- "mcp-cron-linux-amd64": "0.7.2",
17
- "mcp-cron-linux-arm64": "0.7.2",
18
- "mcp-cron-windows-amd64": "0.7.2",
19
- "mcp-cron-windows-arm64": "0.7.2"
14
+ "mcp-cron-darwin-amd64": "0.8.0",
15
+ "mcp-cron-darwin-arm64": "0.8.0",
16
+ "mcp-cron-linux-amd64": "0.8.0",
17
+ "mcp-cron-linux-arm64": "0.8.0",
18
+ "mcp-cron-windows-amd64": "0.8.0",
19
+ "mcp-cron-windows-arm64": "0.8.0"
20
20
  }
21
21
  }