@hiai-gg/docsmint 0.7.3 → 0.7.4

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,6 +45,11 @@ 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.4?
49
+
50
+ - **MCP Registry description fits the 100-character limit**, so official
51
+ catalog publication can complete after 0.7.3 reached npm.
52
+
48
53
  ## What's new in 0.7.3?
49
54
 
50
55
  - **One public-link share dialog in OSS.** Dashboard, sidebar (including Recent),
@@ -132,7 +137,7 @@ docker pull vgalibov/docsmint:web-latest
132
137
  docker pull vgalibov/docsmint:caddy-latest
133
138
  ```
134
139
 
135
- Use versioned tags such as `api-v0.7.3` for reproducible deploys. The
140
+ Use versioned tags such as `api-v0.7.4` for reproducible deploys. The
136
141
  quickstart still builds the Compose stack from this repository so PostgreSQL,
137
142
  Redis, and SeaweedFS start together with the application.
138
143
 
@@ -237154,7 +237154,7 @@ var swaggerConfig = {
237154
237154
  },
237155
237155
  info: {
237156
237156
  title: "DocsMint API",
237157
- version: "0.7.3",
237157
+ version: "0.7.4",
237158
237158
  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.",
237159
237159
  contact: { name: "HiAi-gg", url: "https://github.com/HiAi-gg/docsmint" },
237160
237160
  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.3" });
1049
+ const server = new McpServer({ name: "docsmint", version: "0.7.4" });
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.3" });
1045
+ const server = new McpServer({ name: "docsmint", version: "0.7.4" });
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.3",
4
+ "version": "0.7.4",
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.3';
28
+ const VERSION = '0.7.4';
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
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
3
  "name": "io.github.HiAi-gg/docsmint",
4
4
  "title": "DocsMint",
5
- "description": "Self-hosted AI-native knowledge workspace. Manage scoped documents, folders, categories, hybrid search, GraphRAG, and indexing through MCP.",
5
+ "description": "Self-hosted AI-native knowledge workspace with hybrid search, GraphRAG, and MCP.",
6
6
  "websiteUrl": "https://docsmint.com/docs/mcp",
7
7
  "repository": {
8
8
  "url": "https://github.com/HiAi-gg/docsmint",
@@ -10,7 +10,7 @@
10
10
  "id": "1249550690",
11
11
  "subfolder": "packages/mcp-server"
12
12
  },
13
- "version": "0.7.3",
13
+ "version": "0.7.4",
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.3",
33
+ "version": "0.7.4",
34
34
  "runtimeHint": "npx",
35
35
  "transport": {
36
36
  "type": "stdio"