personal-wiki-mcp
v0.1.1
Published
Read-only MCP server for LLM-maintained personal wiki
Maintainers
Readme
personal-wiki-mcp
Read-only MCP server for personal-wiki-plugin — an LLM-maintained personal knowledge base.
Exposes wiki pages to external LLM agents (Claude Code, Cursor, Copilot, etc.) via the Model Context Protocol.
Install
npx personal-wiki-mcp --wiki /path/to/wikiTools
| Tool | Description |
|------|-------------|
| get_page | Get the full content of a wiki page by relative path |
| list_pages | List all wiki pages with frontmatter metadata (filterable by category) |
| search | Search wiki pages by keyword, returns paths and snippets |
| query | Find related pages for a question using the wiki index |
Usage
stdio (default)
npx personal-wiki-mcp --wiki /path/to/wikiHTTP
npx personal-wiki-mcp --wiki /path/to/wiki --http --port 3000Claude Desktop / Claude Code
Add to your MCP config:
{
"mcpServers": {
"personal-wiki": {
"command": "npx",
"args": ["personal-wiki-mcp", "--wiki", "/path/to/wiki"]
}
}
}With personal-wiki-plugin
If you use personal-wiki-plugin, run /personal-wiki:setup — it configures the MCP server automatically.
Inspiration
This project is part of the personal-wiki-plugin ecosystem, inspired by Andrej Karpathy's LLM Wiki.
License
MIT
