@jaypie/mcp 0.8.82 → 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.82#d8b69467"
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.82",
3
+ "version": "0.8.84",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -44,11 +44,11 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@jaypie/fabric": "^0.3.3",
47
- "@jaypie/kit": "^1.2.11",
47
+ "@jaypie/kit": "^1.2.12",
48
48
  "@jaypie/tildeskill": "^0.3.3",
49
- "@modelcontextprotocol/sdk": "^1.17.0",
49
+ "@modelcontextprotocol/sdk": "1.27.1",
50
50
  "commander": "^14.0.0",
51
- "semver": "^7.7.3",
51
+ "semver": "^7.8.5",
52
52
  "zod": "^4.1.13"
53
53
  },
54
54
  "devDependencies": {
@@ -0,0 +1,10 @@
1
+ ---
2
+ version: 1.2.4
3
+ date: 2026-06-26
4
+ summary: Drop the retired JAYPIE.LIB.MONGOOSE constant
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Remove the `JAYPIE.LIB.MONGOOSE` constant following the retirement of
10
+ `@jaypie/mongoose` from the monorepo. No runtime behavior changes.
@@ -0,0 +1,20 @@
1
+ ---
2
+ version: 1.2.6
3
+ date: 2026-06-26
4
+ summary: Add tagSpan and traceSpan for the active APM span
5
+ ---
6
+
7
+ ## Features
8
+
9
+ - `tagSpan(key, value)` / `tagSpan({ ... })` — set tag(s) on the active dd-trace
10
+ APM span. The caller chooses the key namespace (avoid Datadog's reserved
11
+ `test.*` / `ci.*`). Silently no-ops when there is no active span and never
12
+ throws.
13
+ - `traceSpan(name, fn)` — run `fn` as a child span, kept active across awaits so
14
+ the region's duration is measured on its own. Returns `fn`'s result; no-ops to
15
+ just running `fn` when no tracer is present.
16
+
17
+ The tracer is resolved at runtime via `createRequire` (bundler-safe, mirrors
18
+ `flushLlmObs`/`getLlmObs`): on Lambda the Datadog layer provides `dd-trace` on
19
+ `NODE_PATH`, honored by CJS `require` but not ESM `import`, so a bundled copy is
20
+ never used. Off-Lambda (local/vitest) both helpers no-op.
@@ -0,0 +1,14 @@
1
+ ---
2
+ version: 1.2.57
3
+ date: 2026-06-26
4
+ summary: Re-export tagSpan and traceSpan; drop the optional @jaypie/mongoose peer
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Re-export `tagSpan` and `traceSpan` from `@jaypie/datadog` at the `jaypie`
10
+ root, alongside `submitMetric` and the other Datadog helpers.
11
+ - Remove the unused optional `@jaypie/mongoose` peer dependency. `@jaypie/mongoose`
12
+ has been retired from the monorepo; `jaypie` never imported or re-exported it.
13
+ - Bump bundled subpackage floors: `@jaypie/core` `^1.2.4`, `@jaypie/datadog`
14
+ `^1.2.6`, `@jaypie/kit` `^1.2.12`.
@@ -0,0 +1,11 @@
1
+ ---
2
+ version: 1.2.12
3
+ date: 2026-06-26
4
+ summary: Add HTTP.HEADER.TEST.RUN; drop the retired JAYPIE.LIB.MONGOOSE constant
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Add `HTTP.HEADER.TEST.RUN` (`X-Test-Run-Id`).
10
+ - Remove the `JAYPIE.LIB.MONGOOSE` constant following the retirement of
11
+ `@jaypie/mongoose` from the monorepo.
@@ -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.
@@ -0,0 +1,13 @@
1
+ ---
2
+ version: 0.8.83
3
+ date: 2026-06-26
4
+ summary: Pin @modelcontextprotocol/sdk to 1.27.1; raise semver and @jaypie/kit floors
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Pin `@modelcontextprotocol/sdk` to exactly `1.27.1`. 1.29.0 replaced explicit
10
+ subpath export keys with a `./*` wildcard that the eslint import resolver
11
+ cannot follow, breaking `import-x/no-unresolved` lint; the exact pin holds the
12
+ dedup until the resolver can be upgraded.
13
+ - Raise the `semver` floor to `^7.8.5` and the `@jaypie/kit` floor to `^1.2.12`.
@@ -0,0 +1,13 @@
1
+ ---
2
+ version: 1.2.47
3
+ date: 2026-06-26
4
+ summary: Mock tagSpan and traceSpan; drop dead mongoose externals
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Add mocks for the new `@jaypie/datadog` span helpers at
10
+ `@jaypie/testkit/mock/datadog`: `tagSpan` (no-op) and `traceSpan` (runs its
11
+ callback and returns the result, so traced regions still execute under test).
12
+ - Remove the now-dead `@jaypie/mongoose` / `mongoose` entries from the testkit
13
+ rollup externals following the retirement of `@jaypie/mongoose`.