@cronicorn/mcp-server 1.23.0 → 1.23.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/dist/docs/recipes.md +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/docs/recipes.md
CHANGED
|
@@ -425,7 +425,7 @@ curl -X POST https://cronicorn.com/api/endpoints/ENDPOINT_ID/reset-failures \
|
|
|
425
425
|
|
|
426
426
|
**Goal**: Create a data synchronization job that polls more frequently when there is a large data backlog (high `records_pending`), and relaxes to baseline when the data is caught up.
|
|
427
427
|
|
|
428
|
-
> **No code required.** The AI reads `records_pending` and other fields from your response body and adjusts frequency automatically. You don't write frequency-adjustment logic. See [Code Examples: Data Sync](./code-examples.md#
|
|
428
|
+
> **No code required.** The AI reads `records_pending` and other fields from your response body and adjusts frequency automatically. You don't write frequency-adjustment logic. See [Code Examples: Data Sync](./code-examples.md#javascript-data-sync-with-volume-based-frequency) for programmatic setup.
|
|
429
429
|
|
|
430
430
|
### Step 1: Create the Job and Endpoint via API
|
|
431
431
|
|
package/dist/index.js
CHANGED
|
@@ -14677,7 +14677,7 @@ async function main() {
|
|
|
14677
14677
|
{
|
|
14678
14678
|
name: "cronicorn",
|
|
14679
14679
|
// eslint-disable-next-line node/no-process-env
|
|
14680
|
-
version: "1.23.
|
|
14680
|
+
version: "1.23.1"
|
|
14681
14681
|
},
|
|
14682
14682
|
{
|
|
14683
14683
|
instructions: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cronicorn/mcp-server",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.1",
|
|
4
4
|
"mcpName": "io.github.weskerllc/cronicorn-mcp-server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "MCP server for Cronicorn - enables AI agents to manage cron jobs via Model Context Protocol",
|