Skip to content

Commit 903837b

Browse files
JanYorkJanYork
andauthored
Add LWC local project memory server (#278)
Signed-off-by: JanYork <ixor@qq.com> Co-authored-by: JanYork <ixor@qq.com>
1 parent 598ee4b commit 903837b

1 file changed

Lines changed: 74 additions & 0 deletions

File tree

servers/io.github-janyork-lwc.json

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "io.github-janyork-lwc",
4+
"name": "LWC (Local Wiki CLI)",
5+
"alias": "lwc",
6+
"description": "Local-first, source-grounded project memory for coding agents with durable Markdown knowledge, provenance, optional knowledge graphs, and bounded read-only MCP retrieval.",
7+
"logo": "https://avatars.githubusercontent.com/u/88621545?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools",
11+
"productivity",
12+
"documentation",
13+
"ai-ml"
14+
],
15+
"tags": [
16+
"agent-memory",
17+
"coding-agents",
18+
"knowledge-graph",
19+
"local-first",
20+
"markdown",
21+
"memory",
22+
"project-context",
23+
"wiki"
24+
],
25+
"transport": {
26+
"type": "stdio",
27+
"command": "npx",
28+
"args": [
29+
"-y",
30+
"@i-xor/lwc",
31+
"serve",
32+
"--mcp",
33+
"--path",
34+
"${input:PROJECT_PATH}"
35+
],
36+
"metadata": {
37+
"inputs": [
38+
{
39+
"id": "PROJECT_PATH",
40+
"label": "Project Path",
41+
"description": "Absolute path to the project whose LWC Wiki and optional CodeGraph should be queried.",
42+
"type": "directory_path",
43+
"required": true,
44+
"secret": false,
45+
"placeholder": "C:\\Users\\you\\project or /home/you/project"
46+
}
47+
]
48+
}
49+
},
50+
"auth": {
51+
"type": "none",
52+
"instructions": "No authentication or API key is required. LWC runs locally and reads only the selected project's LWC indexes."
53+
},
54+
"contributor": {
55+
"name": "JanYork",
56+
"github": "JanYork",
57+
"url": "https://github.com/JanYork"
58+
},
59+
"links": {
60+
"repository": "https://github.com/JanYork/llm-wiki-cli",
61+
"homepage": "https://github.com/JanYork/llm-wiki-cli",
62+
"documentation": "https://github.com/JanYork/llm-wiki-cli#readme"
63+
},
64+
"platforms": [
65+
"all"
66+
],
67+
"capabilities": {
68+
"tools": true,
69+
"resources": false,
70+
"prompts": false,
71+
"read_only_mode": true
72+
},
73+
"changelog_url": "https://github.com/JanYork/llm-wiki-cli/releases"
74+
}

0 commit comments

Comments
 (0)