mindpm 1.2.6 → 1.2.7

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/index.js +4 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1344,10 +1344,13 @@ function registerQueryTools(server2) {
1344
1344
  }
1345
1345
 
1346
1346
  // src/index.ts
1347
+ import { createRequire } from "module";
1348
+ var require2 = createRequire(import.meta.url);
1349
+ var { version } = require2("../package.json");
1347
1350
  var server = new McpServer(
1348
1351
  {
1349
1352
  name: "mindpm",
1350
- version: "1.2.3"
1353
+ version
1351
1354
  },
1352
1355
  {
1353
1356
  capabilities: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mindpm",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "Persistent project memory for LLMs via MCP. Never re-explain your project again.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",