@leadbay/mcp 0.6.1 → 0.6.2
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 +5 -1
- package/dist/bin.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# Changelog — @leadbay/mcp
|
|
2
2
|
|
|
3
|
-
## 0.6.
|
|
3
|
+
## 0.6.2 — UNRELEASED
|
|
4
|
+
|
|
5
|
+
**MCPB install fix**: desktop extension bundles now use the current `manifest_version` field and remove unsupported manifest keys (`user_config.*.enum` and an internal note field) so Claude Desktop can preview and install the MCPB.
|
|
6
|
+
|
|
7
|
+
## 0.6.1 — 2026-05-10
|
|
4
8
|
|
|
5
9
|
**Distribution**: listed in the official MCP Registry as `io.github.leadbay/leadbay-mcp` (auto-published from CI via GitHub OIDC); installable as a Claude Code plugin via `/plugin marketplace add leadbay/leadclaw` then `/plugin install leadbay@leadbay-leadclaw`; submission packets prepared for the Claude.ai connector directory and Anthropic's curated MCPB extension directory.
|
|
6
10
|
|
package/dist/bin.js
CHANGED
|
@@ -387,7 +387,7 @@ function buildServer(client, opts = {}) {
|
|
|
387
387
|
}
|
|
388
388
|
const exposedNames = new Set(toolByName.keys());
|
|
389
389
|
const server = new Server(
|
|
390
|
-
{ name: "leadbay", version: "0.6.
|
|
390
|
+
{ name: "leadbay", version: "0.6.2" },
|
|
391
391
|
{
|
|
392
392
|
capabilities: {
|
|
393
393
|
tools: {},
|
|
@@ -587,7 +587,7 @@ function buildServer(client, opts = {}) {
|
|
|
587
587
|
|
|
588
588
|
// src/bin.ts
|
|
589
589
|
import { createRequire } from "module";
|
|
590
|
-
var VERSION = "0.6.
|
|
590
|
+
var VERSION = "0.6.2";
|
|
591
591
|
var HELP = `
|
|
592
592
|
leadbay-mcp ${VERSION} \u2014 Leadbay Model Context Protocol server
|
|
593
593
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leadbay/mcp",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
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",
|