@agifyai/leadify-mcp 8.6.2 → 8.6.4

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/dist/version.d.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  export declare const MCP_PACKAGE_NAME = "@agifyai/leadify-mcp";
2
2
  export declare const MCP_SERVER_NAME = "leadify";
3
- export declare const MCP_VERSION = "8.6.2";
3
+ export declare const MCP_VERSION: string;
package/dist/version.js CHANGED
@@ -1,3 +1,7 @@
1
+ import packageJson from "../package.json" with { type: "json" };
1
2
  export const MCP_PACKAGE_NAME = "@agifyai/leadify-mcp";
2
3
  export const MCP_SERVER_NAME = "leadify";
3
- export const MCP_VERSION = "8.6.2";
4
+ // publish.yml may select the next patch release immediately before building.
5
+ // Read the package manifest so the MCP handshake always reports that same
6
+ // published artifact version rather than a stale source constant.
7
+ export const MCP_VERSION = packageJson.version;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agifyai/leadify-mcp",
3
- "version": "8.6.2",
3
+ "version": "8.6.4",
4
4
  "description": "MCP server for Leadify lead management API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",