@arabold/docs-mcp-server 1.12.2 → 1.12.3

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.
@@ -1,6 +1,6 @@
1
1
  -- Add indexed_at column to track when documents were last indexed
2
2
  -- Step 1: Add the column allowing NULLs (SQLite limitation workaround)
3
- ALTER TABLE documents ADD COLUMN indexed_at DATETIME;
3
+ ALTER TABLE documents ADD COLUMN IF NOT EXISTS indexed_at DATETIME;
4
4
 
5
5
  -- Step 2: Update existing rows to set the timestamp
6
6
  UPDATE documents SET indexed_at = CURRENT_TIMESTAMP WHERE indexed_at IS NULL;
package/dist/cli.js CHANGED
@@ -5,7 +5,7 @@ import { D as DocumentManagementService, a as PipelineManager, H as HttpFetcher,
5
5
  import "semver";
6
6
  import { F as FetchUrlTool, a as FindVersionTool } from "./FindVersionTool-BcnLvjlo.js";
7
7
  const name = "@arabold/docs-mcp-server";
8
- const version = "1.12.1";
8
+ const version = "1.12.2";
9
9
  const description = "MCP server for fetching and searching documentation";
10
10
  const type = "module";
11
11
  const bin = { "docs-server": "dist/server.js", "docs-cli": "dist/cli.js", "docs-web": "dist/web.js" };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arabold/docs-mcp-server",
3
- "version": "1.12.2",
3
+ "version": "1.12.3",
4
4
  "description": "MCP server for fetching and searching documentation",
5
5
  "type": "module",
6
6
  "bin": {