Stop re-explaining your research to your AI agent. Persistent, LLM-maintained wikis that compound over time. Drop PDFs, URLs, YouTube - your agent remembers forever. Based on Karpathy's LLM Wiki pattern.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"llm-wiki-kit": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Stop re-explaining your research to your AI agent. Persistent, LLM-maintained wikis that compound over time. Drop PDFs, URLs, YouTube - your agent remembers forever. Based on Karpathy's LLM Wiki pattern.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in education / ai-ml
Dynamic problem-solving through sequential thought chains
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
The official Python SDK for Model Context Protocol servers and clients
An open-source AI agent that brings the power of Gemini directly into your terminal.
MCP Security Weekly
Get CVE alerts and security updates for Llm Wiki Kit and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
llm-wiki-kit gives your AI agent a persistent, structured memory that compounds over time. Drop PDFs, URLs, YouTube videos — your agent builds a wiki, connects the dots, and remembers everything across sessions.
Based on Karpathy's LLM Wiki pattern. Works with Claude, Codex, Cursor, Windsurf, and any MCP-compatible agent.
https://github.com/user-attachments/assets/8814a581-1832-4e94-a5df-9e9b6b041507
Every time you start a new chat:
You: "Remember that paper on speculative decoding I shared last week?"
Agent: "I don't have access to previous conversations..."
You: *sighs, re-uploads PDF, re-explains context*
You're constantly re-teaching your agent things it should already know.
With llm-wiki-kit, your agent maintains its own knowledge base:
You: "What did we learn about speculative decoding?"
Agent: *searches wiki* "Based on the 3 papers you've shared, the Eagle
architecture shows the best efficiency tradeoffs because..."
The wiki persists. Cross-references build up. Your agent gets smarter with every source you add.
pip install "llm-wiki-kit[all] @ git+https://github.com/iamsashank09/llm-wiki-kit.git"
mkdir my-research && cd my-research
llm-wiki-kit init --agent claude
Add to Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"llm-wiki-kit": {
"command": "llm-wiki-kit",
"args": ["serve", "--root", "/path/to/my-research"]
}
}
}
codex mcp add llm-wiki-kit -- llm-wiki-kit serve --root /path/to/my-research
Add to .cursor/mcp.json:
{
"mcpServers": {
"llm-wiki-kit": {
"command": "llm-wiki-kit",
"args": ["serve", "--root", "/path/to/my-research"]
}
}
}
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"llm-wiki-kit": {
"command": "llm-wiki-kit",
"args": ["serve", "--root", "/path/to/my-research"]
}
}
}
You: "Ingest this paper: raw/attention-is-all-you-need.pdf"
Agent: *creates wiki pages, cross-references concepts, updates index*
You: "Now ingest https://youtube.com/watch?v=kCc8FmEb1nY"
Agent: *extracts transcript, links to existing transformer concepts*
You: "How does the attention mechanism in the paper relate to Karpathy's explanation?"
Agent: *searches wiki, synthesizes answer from both sources*
Your agent now has persistent memory that survives across sessions.
| Feature | Why It Matters |
|---|---|
| Multi-format ingest | PDFs, URLs, YouTube, markdown — just drop it in |
| Auto cross-referencing | Agent builds [[wiki links]] between related concepts |
| Persistent across sessions | Start fresh chats without losing context |
| Full-text search | Agent finds relevant pages instantly (SQLite FTS5) |
| Health checks | wiki_lint catches broken links, orphan pages, contradictions |
| Graph visualization | wiki_graph generates an interactive HTML map of your knowledge (see below) |
| Zero lock-in | It's just markdown files in a folder — view in Obsidian, VS Code, anywhere |
| Works with any MCP agent | Claude, Codex, Cursor, Windsurf, and more |
Your agent can ingest anything:
| Drop this... | Get this... |
|---|---|
| `raw/pape |