@leadbay/mcp 0.14.0 → 0.14.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.
Files changed (2) hide show
  1. package/dist/bin.js +4 -3
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -1694,7 +1694,7 @@ async function doCheck(opts) {
1694
1694
  const currentVersion = opts.currentVersion;
1695
1695
  const state = await opts.stateStore.read();
1696
1696
  const within = now() - state.last_check_time < CHECK_THROTTLE_MS;
1697
- if (within && state.latest_known_version && state.latest_known_mcpb_url && state.latest_known_release_url) {
1697
+ if (!opts.force && within && state.latest_known_version && state.latest_known_mcpb_url && state.latest_known_release_url) {
1698
1698
  const cached = buildInfoIfUpgrade(
1699
1699
  currentVersion,
1700
1700
  state.latest_known_version,
@@ -2705,7 +2705,7 @@ async function createDefaultUpdateStateStore(opts = {}) {
2705
2705
 
2706
2706
  // src/bin.ts
2707
2707
  import { createRequire } from "module";
2708
- var VERSION = "0.14.0";
2708
+ var VERSION = "0.14.1";
2709
2709
  var HELP = `
2710
2710
  leadbay-mcp ${VERSION} \u2014 Leadbay Model Context Protocol server
2711
2711
 
@@ -3770,7 +3770,8 @@ async function main() {
3770
3770
  currentVersion: VERSION,
3771
3771
  stateStore: updateStateStore,
3772
3772
  telemetry,
3773
- logger
3773
+ logger,
3774
+ force: true
3774
3775
  }).catch((err) => {
3775
3776
  logger.warn?.(`update_check.unexpected ${err?.message ?? err}`);
3776
3777
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leadbay/mcp",
3
- "version": "0.14.0",
3
+ "version": "0.14.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",