@bigbrain-work/mcp-connect 1.3.2 → 1.3.3
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/package.json +1 -1
- package/src/constants.js +6 -1
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
|
+
import { createRequire } from "node:module";
|
|
2
|
+
|
|
3
|
+
const require = createRequire(import.meta.url);
|
|
4
|
+
const packageMetadata = require("../package.json");
|
|
5
|
+
|
|
1
6
|
export const PACKAGE_NAME = "@bigbrain-work/mcp-connect";
|
|
2
|
-
export const PACKAGE_VERSION =
|
|
7
|
+
export const PACKAGE_VERSION = packageMetadata.version;
|
|
3
8
|
export const SERVER_NAME = "shiliu_mcp";
|
|
4
9
|
export const MCP_URL = "https://api.bigbrain.work/shiliu/mcp";
|
|
5
10
|
export const AUTH_URL = "https://api.bigbrain.work/shiliu/auth/device";
|