wiki-compiler
Compiles web sources into an Obsidian-compatible vault of structured backlinked wiki pages.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@wiki-compilercompile https://example.com/article"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
wiki-compiler
A CLI + MCP server that compiles web sources into a structured, growing knowledge base — Obsidian-compatible, local-first, schema-driven.
"There is room here for an incredible new product instead of a hacky collection of scripts." — Andrej Karpathy
Most tools give your AI access to your notes. This one gives your AI a compiled knowledge structure — backlinked wiki pages built from raw sources, organized by a schema you define.
How it works
wiki add <url>
│
▼
fetch page → strip HTML → send to Claude
│
▼
Claude extracts: title, summary, key_concepts, categories, tags
│
▼
vault/agent/{slug}.md ← Obsidian-compatible markdown
│
▼
wiki query "what do I know about X?"
│
▼
Claude reads all vault pages → synthesized answerDual vault architecture (kepano's contamination insight):
vault/agent/— compiler output, messy, experimentalvault/personal/— your curated notes, never touched by the tool
Related MCP server: LLM Wiki Harness
Install
git clone https://github.com/Ray0907/wiki-compiler
cd wiki-compiler
uv sync
export ANTHROPIC_API_KEY=sk-ant-...Usage
# Compile a source into your vault
uv run wiki.py add https://github.com/kepano/obsidian-skills
# Written: vault/agent/kepanoobsidian-skills-agent-skills-for-obsidian.md
# Ask a question against everything you've compiled
uv run wiki.py query "What is the Obsidian CLI used for?"Then open vault/ as an Obsidian vault — every [[wikilink]] in the compiled pages becomes a node in your knowledge graph.
Output format
Each compiled page:
---
title: kepano/obsidian-skills
url: https://github.com/kepano/obsidian-skills
summary: A collection of agent skill files that teach AI agents how to read
and write Obsidian vaults using Markdown, Bases, JSON Canvas, and CLI.
categories:
- AI
- Tools
tags:
- obsidian
- agents
- mcp
date_compiled: '2026-04-03'
---
## Summary
A collection of agent skill files...
## Key Concepts
- [[Obsidian CLI]]
- [[Agent Skills]]
- [[JSON Canvas]]
- [[Model Context Protocol]]
- [[Vault Structure]]Schema
schema.yaml controls what the compiler produces. Edit it to match your domain:
categories:
- AI
- Tools
- Research
- Knowledge Management
- Agent Architecture
backlinks:
min_concepts: 2
max_concepts: 8
format: "[[{concept}]]"
output:
filename_pattern: "{slug}.md"
frontmatter_fields:
- title
- url
- summary
- categories
- tags
- date_compiledSchema is re-read on every run — no restart needed.
MCP Server
Connect to Claude Desktop, Cursor, or any MCP client:
uv run mcp_server.pyTwo tools exposed:
add_document(url)— compile a URL into the vaultsearch_wiki(query)— query the vault
Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"wiki": {
"command": "/path/to/wiki-compiler/.venv/bin/python",
"args": ["/path/to/wiki-compiler/mcp_server.py"],
"cwd": "/path/to/wiki-compiler",
"env": {
"ANTHROPIC_API_KEY": "sk-ant-..."
}
}
}
}Tests
uv run pytest tests/ -v
# 16 passed in 0.45sWhy not an Obsidian plugin?
Obsidian plugins can't run heavy LLM pipelines, are tied to one app, and the Obsidian team is already building native AI. The value here is the compiler — the pipeline that turns raw sources into a coherent, schema-consistent knowledge structure. Obsidian is just a convenient viewer for the output.
The MCP server makes the compiled vault available to any LLM client. As models improve, the compilation gets better — the schema and accumulated knowledge stay yours.
Roadmap
wiki compile— batch mode, multiple sources at onceHuman review gate — promote pages from
vault/agent/tovault/personal/wiki report— autonomous mode: one query spawns a team of agents, builds an ephemeral wiki, returns a full reportObsidian CLI integration — use backlink graph for smarter query routing
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Ray0907/wiki-compiler'
If you have feedback or need assistance with the MCP directory API, please join our Discord server