@magic-ingredients/tiny-brain-local 0.16.1 → 0.18.0

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.
@@ -14,6 +14,7 @@ import { ThinkingTool } from './thinking/thinking.tool.js';
14
14
  import { StrategyTool } from './strategy/strategy.tool.js';
15
15
  import { AnalyseTool } from './analyse.tool.js';
16
16
  import { QualityTool } from './quality/quality.tool.js';
17
+ import { ConfigTool } from './config/config.tool.js';
17
18
  export class ToolRegistry {
18
19
  /**
19
20
  * Get all available tool definitions from all tools
@@ -33,6 +34,8 @@ export class ToolRegistry {
33
34
  AnalyseTool.getToolDefinition(),
34
35
  // Quality tool
35
36
  QualityTool.getToolDefinition(),
37
+ // Config tool - manages preferences with reactive agent sync
38
+ ConfigTool.getToolDefinition(),
36
39
  // Response tools (disabled for later release)
37
40
  // AnalyseRequestTool.getToolDefinition(),
38
41
  // ValidateResponseTool.getToolDefinition(),
@@ -59,6 +62,7 @@ export class ToolRegistry {
59
62
  strategy: StrategyTool,
60
63
  update: UpdateTool,
61
64
  quality: QualityTool,
65
+ config: ConfigTool,
62
66
  };
63
67
  return toolMap[name];
64
68
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magic-ingredients/tiny-brain-local",
3
- "version": "0.16.1",
3
+ "version": "0.18.0",
4
4
  "description": "MCP server for Tiny Brain AI assistant",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -31,7 +31,7 @@
31
31
  "dxt:init": "cd dxt && dxt init"
32
32
  },
33
33
  "dependencies": {
34
- "@magic-ingredients/tiny-brain-core": "^0.16.1",
34
+ "@magic-ingredients/tiny-brain-core": "^0.18.0",
35
35
  "@magic-ingredients/tiny-brain-dashboard": "file:../tiny-brain-dashboard",
36
36
  "@modelcontextprotocol/sdk": "^1.0.6",
37
37
  "chalk": "^5.3.0",
@@ -41,6 +41,7 @@
41
41
  "zod": "^3.23.8"
42
42
  },
43
43
  "devDependencies": {
44
+ "@types/minimatch": "^5.1.2",
44
45
  "@types/node": "^20.14.2",
45
46
  "@types/semver": "^7.7.1",
46
47
  "@vitest/coverage-v8": "^2.1.8",