@jaypie/mcp 0.8.10 → 0.8.12

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.
@@ -9,7 +9,7 @@ import { gt } from 'semver';
9
9
  /**
10
10
  * Docs Suite - Documentation services (skill, version, release_notes)
11
11
  */
12
- const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.10#b3e5862c"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.12#5f690a10"
13
13
  ;
14
14
  const __filename$1 = fileURLToPath(import.meta.url);
15
15
  const __dirname$1 = path.dirname(__filename$1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaypie/mcp",
3
- "version": "0.8.10",
3
+ "version": "0.8.12",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,11 @@
1
+ ---
2
+ version: 1.2.22
3
+ date: 2026-04-01
4
+ summary: Raise default max turns to 24, add consecutive tool error limit of 6
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Raised `MAX_TURNS_DEFAULT_LIMIT` from 12 to 24 to give agents more room for tool-heavy workflows
10
+ - Added `MAX_CONSECUTIVE_TOOL_ERRORS = 6` — the operate and stream loops now stop when tools fail 6 times in a row, preventing agents from exhausting turns on broken toolkits
11
+ - Consecutive error counter resets on any successful tool call
@@ -0,0 +1,23 @@
1
+ ---
2
+ version: 1.2.10
3
+ date: 2026-04-01
4
+ summary: Remove status field from JSON log output; Lambda handles log level via console method
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Removed `"status"` field from JSON log output
10
+ - Log level is already determined by Lambda/CloudWatch from the `console.*` method used (`console.debug`, `console.info`, `console.warn`, `console.error`), making the field redundant
11
+
12
+ ## Migration
13
+
14
+ JSON output changes from:
15
+ ```json
16
+ {"message":"hello","status":"debug"}
17
+ ```
18
+ to:
19
+ ```json
20
+ {"message":"hello"}
21
+ ```
22
+
23
+ Any log parsing rules that match on the `"status"` field should be removed or updated.