@zosmaai/pi-llm-wiki 0.10.1 → 0.10.2
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/mcp/index.ts +1 -2
- package/package.json +5 -3
package/mcp/index.ts
CHANGED
|
@@ -14,8 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
import { existsSync, readFileSync } from "node:fs";
|
|
16
16
|
import { join } from "node:path";
|
|
17
|
-
import { McpServer } from "@modelcontextprotocol/server";
|
|
18
|
-
import { StdioServerTransport } from "@modelcontextprotocol/server/stdio";
|
|
17
|
+
import { McpServer, StdioServerTransport } from "@modelcontextprotocol/server";
|
|
19
18
|
import * as z from "zod/v4";
|
|
20
19
|
|
|
21
20
|
// ─── Wiki Vault Detection ──────────────────────────────
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zosmaai/pi-llm-wiki",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"description": "Self-maintaining LLM Wiki for Pi — Karpathy-pattern knowledge base with immutable source capture, automated ingestion, search, linting, and Obsidian-compatible vault. auto-updating personal & company wiki.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
],
|
|
60
60
|
"image": "https://raw.githubusercontent.com/zosmaai/pi-llm-wiki/main/assets/screenshot.png",
|
|
61
61
|
"mcpservers": {
|
|
62
|
-
"llm-wiki": "node ./mcp/index.
|
|
62
|
+
"llm-wiki": "node ./mcp/index.ts"
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
@@ -70,8 +70,10 @@
|
|
|
70
70
|
"node": ">=18"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
+
"@cfworker/json-schema": "^4.1.1",
|
|
73
74
|
"@modelcontextprotocol/server": "^2.0.0-alpha.2",
|
|
74
|
-
"node-html-markdown": "^2.0.0"
|
|
75
|
+
"node-html-markdown": "^2.0.0",
|
|
76
|
+
"zod": "^4.0"
|
|
75
77
|
},
|
|
76
78
|
"devDependencies": {
|
|
77
79
|
"@biomejs/biome": "^1.9.4",
|