mcp-cron 0.8.0 → 0.8.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -85,7 +85,7 @@ To route AI tasks through a [LiteLLM](https://docs.litellm.ai/) proxy:
85
85
  }
86
86
  ```
87
87
 
88
- > The `--ai-model` value should match a model name in your LiteLLM proxy config. LiteLLM exposes an OpenAI-compatible API, so `--ai-provider` can be omitted (defaults to `openai`).
88
+ > The `--ai-model` value should match a model name in your LiteLLM proxy config. LiteLLM exposes an OpenAI-compatible API, so `--ai-provider` can be omitted (defaults to `openai`). When a custom base URL is set, mcp-cron automatically uses the Chat Completions API instead of the Responses API. The Responses API is only used for direct OpenAI (`api.openai.com`) and Azure OpenAI (`*.openai.azure.com`) endpoints.
89
89
 
90
90
  > See [Command Line Arguments](#command-line-arguments) and [Environment Variables](#environment-variables) for all available options.
91
91
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-cron",
3
- "version": "0.8.0",
3
+ "version": "0.8.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.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"
14
+ "mcp-cron-darwin-amd64": "0.8.1",
15
+ "mcp-cron-darwin-arm64": "0.8.1",
16
+ "mcp-cron-linux-amd64": "0.8.1",
17
+ "mcp-cron-linux-arm64": "0.8.1",
18
+ "mcp-cron-windows-amd64": "0.8.1",
19
+ "mcp-cron-windows-arm64": "0.8.1"
20
20
  }
21
21
  }