Llm Wiki Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Llm Wiki Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server for LLM-maintained markdown wikis — a persistent, compounding knowledge base instead of per-query RAG.
Inspired by Andrej Karpathy's LLM Wiki pattern. The LLM incrementally builds and maintains interlinked markdown pages; you curate sources and ask questions; the wiki stays current because maintenance cost is near zero.
| Layer | Path | Who writes |
|---|---|---|
| Raw sources | raw/ | You (immutable) |
| Wiki | wiki/{type}/{slug}.md | LLM via MCP |
| Schema | AGENTS.md | You + LLM |
Plus index.md (catalog) and log.md (timeline), maintained automatically on writes.
| Tool | Description |
|---|---|
wiki_get_index | Read master index.md |
wiki_list_pages | List pages, optional type filter |
wiki_get_page | Fetch one page (frontmatter + body) |
wiki_search | Full-text search with snippets |
wiki_list_raw | List immutable source files in raw/ |
wiki_read_raw | Read a raw source file (text or binary metadata) |
wiki_put_page | Create/update page + optional log/index/git commit |
cp -r examples/starter-wiki ~/my-wiki
cd ~/my-wiki
git init
git add . && git commit -m "Initial wiki scaffold"Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"llm-wiki": {
"command": "npx",
"args": ["-y", "@jlnkrth/llm-wiki-mcp"],
"env": { "WIKI_DIR": "/path/to/my-wiki" }
}
}
}Restart Cursor. Copy examples/starter-wiki/AGENTS.md conventions into your wiki (included if you copied the starter).
git clone https://github.com/jlnkrth/llm-wiki-mcp.git
cd llm-wiki-mcp
npm install
WIKI_DIR=/path/to/my-wiki npm run start:stdioSee TESTING.md for the full test checklist.
For team/shared wikis on a VPS:
cd deploy
cp .env.example .env
docker compose up -d --buildMCP endpoint: http://<host>/wiki-mcp/mcp with header X-Api-Key: <MCP_API_KEY>.
See deploy/README.md for details.
wiki.config.yaml in your wiki root:
types:
- entities
- concepts
- sources
- synthesis
- topics
git:
enabled: true # false = local writes only, no commit/push
branch: main
commit_prefix: "wiki:"
search:
refresh_interval_ms: 300000See ROADMAP.md for planned features (local image assets, rich query outputs, search upgrades).
RAG rediscovers knowledge on every question. An LLM wiki compiles once and stays current — cross-references exist, contradictions are flagged, synthesis reflects everything you've read. The MCP is the safe write interface: single-writer lock, index/log maintenance, structured frontmatter.
Browse the wiki in Obsidian; let the agent maintain it.
MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.