@jaypie/mcp 0.8.83 → 0.8.84

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.83#c2718929"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.84#2963e2e5"
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.83",
3
+ "version": "0.8.84",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,34 @@
1
+ ---
2
+ version: 1.3.4
3
+ date: 2026-06-27
4
+ summary: All first-class providers run on fetch-based clients; provider SDKs removed (Bedrock excepted)
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Completes the provider-SDK exodus. OpenRouter, Google, Anthropic, OpenAI, and
10
+ xAI now talk to their APIs through minimal `fetch`-based clients instead of
11
+ vendor SDKs. The published manifest drops `openai`, `@anthropic-ai/sdk`,
12
+ `@google/genai`, and `@openrouter/sdk` from dependencies.
13
+ - OpenAI and xAI share a new `OpenAIClient` (`providers/openai/client.ts`) that
14
+ mirrors the SDK surface the adapters actually use — the Responses API
15
+ (`/responses`, streaming and non-streaming) for `operate`/`stream` and Chat
16
+ Completions (`/chat/completions`, plus a `parse` helper) for `send`. It throws
17
+ named error classes matching the SDK's, so the adapters' `instanceof`-based
18
+ `classifyError` is unchanged. xAI reuses the same client via a custom
19
+ `baseURL`.
20
+ - A local `zodResponseFormat` (`providers/openai/responseFormat.ts`) replaces the
21
+ `openai/helpers/zod` import.
22
+
23
+ ## Bedrock
24
+
25
+ - `@aws-sdk/client-bedrock-runtime` remains an **optional peer dependency** plus
26
+ a devDependency. It is never statically imported — all references are
27
+ `import type` (erased) or a lazy `await import()` guarded to throw a
28
+ `ConfigurationError` when absent. Only Bedrock consumers need it; everyone else
29
+ installs zero provider SDKs.
30
+
31
+ ## Migration
32
+
33
+ No changes required. Provider behavior, error classification, structured output,
34
+ and streaming are unchanged; verified live across all five providers.