indelible-mcp 4.3.0 → 4.3.1

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/LICENSE ADDED
@@ -0,0 +1,57 @@
1
+ Business Source License 1.1
2
+
3
+ Parameters
4
+
5
+ Licensor: Indelible Federation (zcooL)
6
+ Licensed Work: Indelible CLI / MCP
7
+ The Licensed Work is (c) 2026 Indelible Federation
8
+ Additional Use Grant: You may make use of the Licensed Work for personal,
9
+ non-commercial, educational, and evaluation purposes.
10
+ You may NOT use the Licensed Work to offer a competing
11
+ commercial blockchain storage, session saving, or
12
+ encrypted vault service without written permission
13
+ from the Licensor.
14
+ Change Date: April 30, 2030
15
+ Change License: MIT License
16
+
17
+ Terms
18
+
19
+ The Licensor hereby grants you the right to copy, modify, create derivative
20
+ works, redistribute, and make non-production use of the Licensed Work. The
21
+ Licensor may make an Additional Use Grant, above, permitting limited
22
+ production use.
23
+
24
+ Effective on the Change Date, or the fourth anniversary of the first publicly
25
+ available distribution of a specific version of the Licensed Work under this
26
+ License, whichever comes first, the Licensor hereby grants you rights under
27
+ the terms of the Change License, and the rights granted in the paragraph
28
+ above terminate.
29
+
30
+ If your use of the Licensed Work does not comply with the requirements
31
+ currently in effect as described in this License, you must purchase a
32
+ commercial license from the Licensor, its affiliated entities, or authorized
33
+ resellers, or you must refrain from using the Licensed Work.
34
+
35
+ All copies of the original and modified Licensed Work, and derivative works
36
+ of the Licensed Work, are subject to this License. This License applies
37
+ separately for each version of the Licensed Work and the Change Date may
38
+ vary for each version of the Licensed Work released by Licensor.
39
+
40
+ You must conspicuously display this License on each original or modified copy
41
+ of the Licensed Work. If you receive the Licensed Work in original or
42
+ modified form from a third party, the terms and conditions set forth in this
43
+ License apply to your use of that work.
44
+
45
+ Any use of the Licensed Work in violation of this License will automatically
46
+ terminate your rights under this License for the current and all other
47
+ versions of the Licensed Work.
48
+
49
+ This License does not grant you any right in any trademark or logo of
50
+ Licensor or its affiliates (provided that you may use a trademark or logo of
51
+ Licensor as expressly required by this License).
52
+
53
+ TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
54
+ AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
55
+ EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
56
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND
57
+ TITLE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "indelible-mcp",
3
- "version": "4.3.0",
3
+ "version": "4.3.1",
4
4
  "description": "Blockchain-backed memory and code storage for Claude Code. Save AI conversations and source code permanently on BSV.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -26,7 +26,7 @@
26
26
  "code-vault",
27
27
  "encrypted-storage"
28
28
  ],
29
- "license": "MIT",
29
+ "license": "BSL-1.1",
30
30
  "repository": {
31
31
  "type": "git",
32
32
  "url": "git+https://github.com/indelibleai/indelible-mcp.git"
package/src/index.js CHANGED
@@ -272,7 +272,7 @@ Commands:
272
272
 
273
273
  function printHelp() {
274
274
  console.log(`
275
- Indelible MCP — Blockchain memory for Claude Code (v4.3.0)
275
+ Indelible MCP — Blockchain memory for Claude Code (v4.3.1)
276
276
 
277
277
  Setup:
278
278
  indelible-mcp setup --wif=KEY --pin=PIN Import and encrypt your private key
@@ -493,7 +493,7 @@ function readStdin() {
493
493
 
494
494
  const SERVER_INFO = {
495
495
  name: 'indelible',
496
- version: '4.3.0',
496
+ version: '4.3.1',
497
497
  description: 'Blockchain-backed memory and code storage for Claude Code'
498
498
  }
499
499
 
@@ -237,7 +237,7 @@ export async function checkProTier(address) {
237
237
  })
238
238
  if (res.ok) {
239
239
  const data = await res.json()
240
- if (data.plan === 'admin' || data.plan === 'pro' || data.plan === 'developer') {
240
+ if (data.active !== false && (data.plan === 'admin' || data.plan === 'pro' || data.plan === 'developer')) {
241
241
  return { ok: true, plan: data.plan }
242
242
  }
243
243
  return { ok: false, plan: data.plan || 'free', error: 'Pro tier required for Diary AI companion. Upgrade at indelible.one/pricing' }