Turn Your Knowledge Base into a Wiki + MCP Server for Claude

A Reddit user shared a workflow that turns a knowledge base into an internal wiki and an MCP server for Claude, making the KB both readable and writable by the agent.
How It Works
- Sources processed: a URL, a PDF, and a Notion page.
- Auto-sync: the URL source syncs weekly.
- Output: an internal wiki generated from those sources by a tool called Akyn.
MCP Server Integration
The KB is connected to Claude via an MCP server with:
- OAuth authentication
- Human-in-the-loop on tool calls (user approves each operation)
Exposed MCP Tools
list_sources— list all sources in the KBquery— search or retrieve content from the wikiwrite_memory— write information back to the KB (e.g., Claude can contribute new entries)
Bidirectional Sync
The KB is not read-only: Claude can query and contribute. Written memories appear inside the same KB in the Akyn UI, and the KB stays in sync with the original sources.
Who This Is For
Developers who want to give Claude persistent, updatable access to their documentation or notes without manual syncing.
Practical Takeaway
If you maintain a knowledge base (URLs, PDFs, Notion), you can spin up an MCP server that lets Claude search, read, and write. The source stay synced, and you keep control via human approval on tool calls.
📖 Read the full source: r/ClaudeAI
👀 See Also

Transforming Claude Code into an Autonomous Engineering Team
The ~/.claude/ configuration turns Claude Code into an autonomous build system, generating and testing code autonomously.

Markdown Manager: A Simple Markdown Editor for macOS
Markdown Manager is a free, open-source macOS app for managing Markdown files, featuring document conversion and preview capabilities.

Smriti: A Git-like system for managing LLM reasoning state to prevent conversation drift
Smriti is an open-source tool that lets developers save, restore, branch, and compare reasoning states in LLM conversations to prevent drift. It treats interactions as state rather than chat history, allowing clean rollbacks and alternative exploration without contamination.

LLM Skirmish: A Real-Time Strategy Game Benchmark for AI Coding Agents
LLM Skirmish is a benchmark where AI agents write code to play 1v1 real-time strategy games against each other. It uses a modified Screeps API and tests in-context learning across five tournament rounds.