@jaypie/mcp 0.8.35 → 0.8.36

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.35#6b1947e4"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.36#59e1a274"
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.35",
3
+ "version": "0.8.36",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,14 @@
1
+ ---
2
+ version: 1.2.26
3
+ date: 2026-04-16
4
+ summary: Strip temperature for Anthropic models that reject it; auto-retry on 400
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Add a forward-compatible denylist of Anthropic models that no longer accept `temperature` (regex-matched: `claude-opus-4-7`+ and `claude-opus-5`+ including dated variants)
10
+ - `AnthropicAdapter.buildRequest` strips `temperature` (and `providerOptions.temperature`) before the SDK sees it when the model is on the denylist
11
+ - `executeRequest` and `executeStreamRequest` catch 400 `BadRequestError` responses whose message mentions "temperature", cache the model on the adapter instance, and retry once without the parameter
12
+ - Runtime-cached models are consulted by subsequent `buildRequest` calls, so the same adapter instance skips the param on repeat calls
13
+ - Exposes `rememberModelRejectsTemperature(model)` and `clearRuntimeNoTemperatureModels()` on `AnthropicAdapter`
14
+ - Fixes cases where `Llm.operate({ model: "claude-opus-4-7", temperature: 0, ... })` failed as an unrecoverable DNC error, skipping every subsequent case in a plan
@@ -0,0 +1,9 @@
1
+ ---
2
+ version: 0.8.36
3
+ date: 2026-04-16
4
+ summary: Add release notes for @jaypie/llm 1.2.26
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Added release notes for `@jaypie/llm@1.2.26` (Anthropic temperature-deprecation handling)