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

PocketBot: AI compiles automations to JavaScript for cost-effective, deterministic scheduling
PocketBot addresses API and hardware cost issues by compiling natural language requests into self-contained JavaScript scripts that run on schedules without LLM calls at runtime. The tool uses AI only once to write code, then executes deterministically with 20+ integrations including Google Suite, Slack, and Notion.

SubQ: A Sub-Quadratic LLM with 12M-Token Context Window
SubQ is a fully sub-quadratic sparse-attention LLM offering a 12M-token context window at 150 tokens/s, with SWE-Bench Verified 81.8% and RULER @ 128K 95.0%. It reduces attention compute ~1000× compared to transformers.

ShareMyClaudeMD: Tool Converts Claude-Generated Markdown Files to Shareable Rendered Pages
A developer built sharemyclaudemd.com, a free tool that converts any Markdown file into a live, rendered page with a shareable URL and QR code. The tool addresses the friction of sharing Claude-generated Markdown files, which often requires recipients to open them in a specific editor or push to GitHub just for a rendered view.

quorum: AI Code Governance Tool Enforces Independent Model Review
quorum is a governance layer for AI-assisted development that enforces a consensus protocol requiring code to be independently reviewed by a different model before committing. It includes three structural gates that block progress: audit, retro, and quality gates.