@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/tools/context_entities.d.ts +32 -32
- package/dist/tools/personas.d.ts +2 -4
- package/dist/tools/personas.js +118 -1092
- package/dist/version.d.ts +1 -1
- package/dist/version.js +5 -1
- package/package.json +1 -1
package/dist/version.d.ts
CHANGED
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
|
-
|
|
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;
|