@geminilight/mindos 0.5.62 → 0.5.63

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.
@@ -17,7 +17,7 @@ function parseHostname(host: string): string {
17
17
  export async function GET(req: NextRequest) {
18
18
  try {
19
19
  const settings = readSettings();
20
- const port = settings.mcpPort ?? 8781;
20
+ const port = Number(process.env.MINDOS_MCP_PORT) || settings.mcpPort || 8781;
21
21
  const token = settings.authToken ?? '';
22
22
  const authConfigured = !!token;
23
23
 
@@ -7,6 +7,7 @@ import { manifest as agentInspector } from '@/components/renderers/agent-inspect
7
7
  import { manifest as backlinks } from '@/components/renderers/backlinks/manifest';
8
8
  import { manifest as config } from '@/components/renderers/config/manifest';
9
9
  import { manifest as csv } from '@/components/renderers/csv/manifest';
10
+ import { manifest as diff } from '@/components/renderers/diff/manifest';
10
11
  import { manifest as summary } from '@/components/renderers/summary/manifest';
11
12
  import { manifest as timeline } from '@/components/renderers/timeline/manifest';
12
13
  import { manifest as todo } from '@/components/renderers/todo/manifest';
@@ -14,7 +15,7 @@ import { manifest as workflow } from '@/components/renderers/workflow/manifest';
14
15
  import { manifest as graph } from '@/components/renderers/graph/manifest';
15
16
 
16
17
  const manifests = [
17
- agentInspector, backlinks, config, csv, summary, timeline, todo, workflow, graph,
18
+ agentInspector, backlinks, config, csv, diff, summary, timeline, todo, workflow, graph,
18
19
  ];
19
20
 
20
21
  for (const m of manifests) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geminilight/mindos",
3
- "version": "0.5.62",
3
+ "version": "0.5.63",
4
4
  "description": "MindOS — Human-Agent Collaborative Mind System. Local-first knowledge base that syncs your mind to all AI Agents via MCP.",
5
5
  "keywords": [
6
6
  "mindos",