@memoraone/mcp 0.1.49 → 0.1.51

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.
@@ -1318,7 +1318,7 @@ async function resolveAuthoritativeBinding(workspaceRoot, _options = {}) {
1318
1318
  const local = await resolveLocalBinding(root);
1319
1319
  bindings.push(toResolvedBinding(local));
1320
1320
  } catch (err) {
1321
- if (err instanceof ReconnectRequiredError) {
1321
+ if (err instanceof ReconnectRequiredError && (err.message.includes("No local binding for workspace") || err.message.includes("No local MemoraOne binding for this workspace"))) {
1322
1322
  continue;
1323
1323
  }
1324
1324
  throw err;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memoraone/mcp",
3
- "version": "0.1.49",
3
+ "version": "0.1.51",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs",
6
6
  "exports": {
@@ -20,15 +20,6 @@
20
20
  "publishConfig": {
21
21
  "access": "public"
22
22
  },
23
- "scripts": {
24
- "build": "tsup && node scripts/writeBinWrapper.cjs",
25
- "prepublishOnly": "pnpm run build",
26
- "dev": "tsx src/cli.ts",
27
- "lint": "eslint .",
28
- "lint:contracts": "node scripts/lint-contracts.cjs",
29
- "test": "pnpm run lint:contracts && MEMORAONE_SKIP_CONNECT_HOST_RUNTIME_CLEANUP=1 node --import=tsx --test test/*.test.js",
30
- "validate:auth": "node --import=tsx --test test/memoraClient.test.js"
31
- },
32
23
  "dependencies": {
33
24
  "@modelcontextprotocol/sdk": "^1.25.1",
34
25
  "@napi-rs/keyring": "1.3.0",
@@ -41,5 +32,13 @@
41
32
  "tsup": "^8.5.1",
42
33
  "tsx": "^4.21.0",
43
34
  "typescript": "^5.9.2"
35
+ },
36
+ "scripts": {
37
+ "build": "tsup && node scripts/writeBinWrapper.cjs",
38
+ "dev": "tsx src/cli.ts",
39
+ "lint": "eslint .",
40
+ "lint:contracts": "node scripts/lint-contracts.cjs",
41
+ "test": "pnpm run lint:contracts && MEMORAONE_SKIP_CONNECT_HOST_RUNTIME_CLEANUP=1 node --import=tsx --test test/*.test.js",
42
+ "validate:auth": "node --import=tsx --test test/memoraClient.test.js"
44
43
  }
45
- }
44
+ }