@jaypie/mcp 0.7.32 → 0.7.34
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.7.
|
|
12
|
+
const BUILD_VERSION_STRING = "@jaypie/mcp@0.7.34#4de9b6a9"
|
|
13
13
|
;
|
|
14
14
|
const __filename$1 = fileURLToPath(import.meta.url);
|
|
15
15
|
const __dirname$1 = path.dirname(__filename$1);
|
package/package.json
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.17
|
|
3
|
+
date: 2026-03-11
|
|
4
|
+
summary: Fix streaming tool-call roundtrip for OpenAI and Gemini providers
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# @jaypie/llm 1.2.17
|
|
8
|
+
|
|
9
|
+
## Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **OpenAI streaming tool calls**: Preserve item ID (`fc_` prefix) separately from call ID (`call_` prefix) during streaming tool-call roundtrip. Previously both were set to `call_id`, causing `400 Invalid 'input[2].id'` errors on post-tool turns.
|
|
12
|
+
- **Gemini streaming tool calls**: Preserve `thoughtSignature` field from Gemini 3 model responses through the streaming roundtrip. Previously dropped between turns, causing `Function call is missing a thought_signature` errors.
|
|
13
|
+
|
|
14
|
+
## Details
|
|
15
|
+
|
|
16
|
+
Added optional `metadata` field to `LlmStreamChunkToolCall.toolCall` interface for provider-specific data that must survive the tool-call roundtrip. OpenAI adapter emits `itemId`, Gemini adapter emits `thoughtSignature`, and `StreamLoop` applies both when building history items for the next turn.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.18
|
|
3
|
+
date: 2026-03-11
|
|
4
|
+
summary: Fix OpenAI streaming tool-call roundtrip - strip invalid name field from function_call_output
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# @jaypie/llm 1.2.18
|
|
8
|
+
|
|
9
|
+
## Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **OpenAI streaming tool calls**: Strip `name` field from `function_call_output` items before sending to OpenAI Responses API. The API rejects unknown parameters on these items, causing `400 Unknown parameter: 'input[N].name'` errors during post-tool turns.
|