@hiai-gg/docsmint 0.7.5 → 0.7.6

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/README.md CHANGED
@@ -45,7 +45,7 @@ server.
45
45
  - **Own the full stack**: application data, vectors, graph, queue, and files run
46
46
  on infrastructure you control.
47
47
 
48
- ## What's new in 0.7.5?
48
+ ## What's new in 0.7.6?
49
49
 
50
50
  - **MCP Registry description fits the 100-character limit**, so official
51
51
  catalog publication can complete after 0.7.3 reached npm.
@@ -137,7 +137,7 @@ docker pull vgalibov/docsmint:web-latest
137
137
  docker pull vgalibov/docsmint:caddy-latest
138
138
  ```
139
139
 
140
- Use versioned tags such as `api-v0.7.5` for reproducible deploys. The
140
+ Use versioned tags such as `api-v0.7.6` for reproducible deploys. The
141
141
  quickstart still builds the Compose stack from this repository so PostgreSQL,
142
142
  Redis, and SeaweedFS start together with the application.
143
143
 
@@ -237571,7 +237571,7 @@ var swaggerConfig = {
237571
237571
  },
237572
237572
  info: {
237573
237573
  title: "DocsMint API",
237574
- version: "0.7.5",
237574
+ version: "0.7.6",
237575
237575
  description: "Self-hosted AI-native knowledge workspace and installable PWA with hybrid search, GraphRAG, REST, SDK, CLI, and MCP access for people and AI agents.",
237576
237576
  contact: { name: "HiAi-gg", url: "https://github.com/HiAi-gg/docsmint" },
237577
237577
  license: {
package/dist/mcp-cli.js CHANGED
@@ -1046,7 +1046,7 @@ function registerDocsmintMcpCapabilities(server, client2) {
1046
1046
  registerExtendedCapabilities(server, client2, (handler11) => wrapHandler("extended", handler11));
1047
1047
  }
1048
1048
  function createDocsmintMcpServer(options = {}) {
1049
- const server = new McpServer({ name: "docsmint", version: "0.7.5" });
1049
+ const server = new McpServer({ name: "docsmint", version: "0.7.6" });
1050
1050
  const client2 = options.docsClient ? createMcpDocsClient(options.docsClient, options.requestContext) : options.client ?? createMcpDocsClient(createDefaultDocsClient(), options.requestContext);
1051
1051
  registerDocsmintMcpCapabilities(server, client2);
1052
1052
  return server;
@@ -1042,7 +1042,7 @@ function registerDocsmintMcpCapabilities(server, client2) {
1042
1042
  registerExtendedCapabilities(server, client2, (handler11) => wrapHandler("extended", handler11));
1043
1043
  }
1044
1044
  function createDocsmintMcpServer(options = {}) {
1045
- const server = new McpServer({ name: "docsmint", version: "0.7.5" });
1045
+ const server = new McpServer({ name: "docsmint", version: "0.7.6" });
1046
1046
  const client2 = options.docsClient ? createMcpDocsClient(options.docsClient, options.requestContext) : options.client ?? createMcpDocsClient(createDefaultDocsClient(), options.requestContext);
1047
1047
  registerDocsmintMcpCapabilities(server, client2);
1048
1048
  return server;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hiai-gg/docsmint",
3
3
  "mcpName": "io.github.HiAi-gg/docsmint",
4
- "version": "0.7.5",
4
+ "version": "0.7.6",
5
5
  "type": "module",
6
6
  "browser": {
7
7
  "./dist/backend-launcher.js": false,
@@ -25,7 +25,7 @@ import { registerSearch } from './commands/search.js';
25
25
  import { registerSnapshot } from './commands/snapshot.js';
26
26
  import { registerUpdate } from './commands/update.js';
27
27
 
28
- const VERSION = '0.7.5';
28
+ const VERSION = '0.7.6';
29
29
 
30
30
  const program = new Command();
31
31
  program.name('docsmint').description('CLI for the DocsMint knowledge workspace').version(VERSION);
package/server.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "id": "1249550690",
11
11
  "subfolder": "packages/mcp-server"
12
12
  },
13
- "version": "0.7.5",
13
+ "version": "0.7.6",
14
14
  "icons": [
15
15
  {
16
16
  "src": "https://raw.githubusercontent.com/HiAi-gg/docsmint/main/frontend/static/logo-dark.png",
@@ -30,7 +30,7 @@
30
30
  "registryType": "npm",
31
31
  "registryBaseUrl": "https://registry.npmjs.org",
32
32
  "identifier": "@hiai-gg/docsmint",
33
- "version": "0.7.5",
33
+ "version": "0.7.6",
34
34
  "runtimeHint": "npx",
35
35
  "transport": {
36
36
  "type": "stdio"