mcp-cron 0.2.1 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +4 -7
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -328,18 +328,15 @@ mcp-cron/
328
328
  └── README.md # Project documentation
329
329
  ```
330
330
 
331
- ### Building and Testing
331
+ ### Building
332
332
 
333
333
  ```bash
334
- # Build the application
335
334
  go build -o mcp-cron cmd/mcp-cron/main.go
335
+ ```
336
336
 
337
- # Run tests
338
- go test ./...
337
+ ### Testing
339
338
 
340
- # Run tests and check coverage
341
- go test ./... -cover
342
- ```
339
+ See [docs/testing.md](docs/testing.md) for the full testing guide, including integration tests and AI task tests.
343
340
 
344
341
  ## Acknowledgments
345
342
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-cron",
3
- "version": "0.2.1",
3
+ "version": "0.2.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.2.1",
15
- "mcp-cron-darwin-arm64": "0.2.1",
16
- "mcp-cron-linux-amd64": "0.2.1",
17
- "mcp-cron-linux-arm64": "0.2.1",
18
- "mcp-cron-windows-amd64": "0.2.1",
19
- "mcp-cron-windows-arm64": "0.2.1"
14
+ "mcp-cron-darwin-amd64": "0.2.2",
15
+ "mcp-cron-darwin-arm64": "0.2.2",
16
+ "mcp-cron-linux-amd64": "0.2.2",
17
+ "mcp-cron-linux-arm64": "0.2.2",
18
+ "mcp-cron-windows-amd64": "0.2.2",
19
+ "mcp-cron-windows-arm64": "0.2.2"
20
20
  }
21
21
  }