mind-wiki-mcp
Click on "Deploy 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., "@mind-wiki-mcpfind what I know about Convex"
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.
mind-wiki-mcp
MCP server for mind-wiki — access your personal knowledge wiki from any directory or MCP-compatible client.
Why
The mind-wiki skill works great when you're inside the wiki directory. But what if you're working in a different project and want to query your wiki? Or want to chat with your knowledge base from Claude Desktop?
This MCP server exposes your mind-wiki as tools that any MCP client can use — Claude Code (from any directory), Claude Desktop, or any other MCP-compatible tool.
Related MCP server: wiki-mcp
Install
Quick setup (recommended)
If you already have the mind-wiki skill installed, just run:
setup mind-wiki mcpManual setup
# Register in Claude Code (accessible from any project)
npx -y mind-wiki-mcp setup ~/path/to/your/wiki
# Also register in Claude Desktop
npx -y mind-wiki-mcp setup ~/path/to/your/wiki --claude-desktopThis registers the MCP server in your Claude settings. The server starts automatically when needed — no daemon to manage.
Available Tools
Once installed, these tools are available in any Claude Code session or Claude Desktop conversation:
Tool | Description |
| Search your wiki by topic or question |
| Quick dashboard — page counts, domains, tags, health |
| Health check — broken links, orphans, missing frontmatter |
| Review queue — pages needing human verification |
| Read the wiki index (L1 catalog) |
| Read the activity log |
| Initialize wiki structure |
| List/filter pages by type, domain, or tag |
Usage Examples
From any Claude Code project:
"Use mind_query to find what I know about Convex"
"Show me my wiki stats"
"What's in my review queue?"
"List all my technology pages"
From Claude Desktop:
"Search my wiki for authentication patterns"
"What business ideas do I have in my wiki?"
How It Works
The MCP server reads and writes the same markdown files that the mind-wiki skill uses. No database, no sync layer — it's just a structured interface to your wiki directory.
Your wiki directory (markdown files)
↑ reads/writes
mind-wiki-mcp (MCP server)
↑ MCP protocol
Claude Code / Claude Desktop / any MCP clientThe server is started on-demand by the MCP client — no background daemon needed. It resolves the wiki path from the MIND_WIKI_PATH environment variable (set automatically during setup).
Configuration
The setup command writes to:
Claude Code:
~/.claude/settings.jsonClaude Desktop:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%/Claude/claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Manual configuration
If you prefer to configure manually, add this to your settings:
{
"mcpServers": {
"mind-wiki": {
"command": "npx",
"args": ["-y", "mind-wiki-mcp"],
"env": {
"MIND_WIKI_PATH": "/absolute/path/to/your/wiki"
}
}
}
}Uninstall
npx mind-wiki-mcp uninstallRemoves the MCP server registration from both Claude Code and Claude Desktop settings. Does not touch your wiki files.
Requirements
Node.js 18+
A mind-wiki directory (run "setup mind-wiki" first)
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.
Serve a folder of Markdown notes as an MCP server: hybrid search, reading, and sourced answers.
Turn outlines and hierarchical notes into interactive mind maps through a hosted remote MCP server.
Personal knowledge base MCP server with semantic search, auto-categorization, metadata extraction
Related MCP Servers
- AlicenseAqualityAmaintenanceMCP Server for local knowledge management. Semantic + keywords + tags8155 PyPI19MIT
- FlicenseNot gradedqualityDmaintenanceMCP server for managing a personal markdown wiki. Provides search, navigation, read, write, delete, and move tools with automatic index.md management.-
- AlicenseBqualityCmaintenancePython MCP server for programmatic access to markdown-based knowledge vaults, enabling AI assistants to browse, read, search, update, and manage notes, tasks, and projects.481MIT
- AlicenseNot gradedqualityAmaintenanceA generic MCP server that turns a directory of Markdown wiki pages into a network-reachable knowledge base, queryable and updatable by any MCP-compatible client.MIT