@leadbay/mcp 0.12.0 → 0.12.1

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog — @leadbay/mcp
2
2
 
3
+ ## 0.12.1 — 2026-05-21
4
+
5
+ MCPB hotfix for Claude Desktop.
6
+
7
+ - **Fix packaged-server startup**: the MCPB bundle now injects a Node `createRequire` shim before esbuild's ESM wrapper so CommonJS dependencies can still require Node built-ins such as `perf_hooks`. This fixes the Claude Desktop disconnect where the server exited during initialization.
8
+ - **Packaging guardrail**: `@leadbay/dxt build` now runs the staged `server/index.js --version` before zipping, and the smoke suite extracts the MCPB and completes a real MCP initialize/tools-list handshake.
9
+ - **Manifest refresh**: MCPB manifests now declare `manifest_version: "0.3"` and the smoke assertions match the current MCPB manifest spec.
10
+
3
11
  ## 0.12.0 — 2026-05-21
4
12
 
5
13
  Campaign and field-sales workflow release.
package/dist/bin.js CHANGED
@@ -2542,7 +2542,7 @@ async function createDefaultUpdateStateStore(opts = {}) {
2542
2542
 
2543
2543
  // src/bin.ts
2544
2544
  import { createRequire } from "module";
2545
- var VERSION = "0.12.0";
2545
+ var VERSION = "0.12.1";
2546
2546
  var HELP = `
2547
2547
  leadbay-mcp ${VERSION} \u2014 Leadbay Model Context Protocol server
2548
2548
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leadbay/mcp",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "mcpName": "io.github.leadbay/leadbay-mcp",
5
5
  "description": "Model Context Protocol (MCP) server for Leadbay — AI lead discovery, qualification, and enrichment for Claude Desktop, Cursor, and Claude Code.",
6
6
  "type": "module",