ai-wiki-mcp
Exposes Prometheus metrics at /metrics for monitoring tool usage and wiki state.
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., "@ai-wiki-mcpsearch the wiki for notes about MCP servers"
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.
ai-wiki-mcp
A small, wiki-aware MCP server over the ai-wiki/ markdown knowledge base. It
replaces the Obsidian + cyanheads/obsidian-mcp-server stack: agents (Claude
Code, Hermes, Open WebUI) operate the wiki over a single streamable-HTTP MCP
endpoint, while the files stay plain markdown on disk.
Why a purpose-built server instead of a generic filesystem MCP:
Structured search — recovers the frontmatter querying Obsidian's dataview gave us (lost on leaving Obsidian).
Schema-validated writes — frontmatter crosses the wire as JSON and is emitted as real YAML; the old
"['a','b']"array-mangling bug is impossible by construction.Server-side lint — one
wiki_lintcall runs every structural check instead of dozens of agent round-trips.
Tools
Tool | Purpose |
| directory snapshot of notes (optional frontmatter) |
| read a note; |
| full-text (ripgrep) and/or structured frontmatter filter |
| create/overwrite a note with validated, structured frontmatter |
| surgical body edit ( |
| structured frontmatter mutation; taxonomy-checked tags |
| all structural checks server-side; pure read |
| move a page to |
Structured search filter DSL
{"type": "concept"} # scalar equality
{"confidence": ["high", "medium"]} # scalar membership
{"tags.contains": "domain/ai"} # list contains
{"tags.contains_any": [...]} # list intersects
{"tags.contains_all": [...]} # list superset
{"missing": ["sources"]} # keys absent
{"present": ["contested"]} # keys presentRelated MCP server: data-olympus MCP server
Schema
Validation is driven by <wiki>/.schema.yaml (see .schema.yaml.example), the
machine-readable source of truth for frontmatter rules and the tag taxonomy. The
human-readable ai-wiki/SCHEMA.md is kept in sync (a wiki_lint drift check
guards this). The file is stat-reloaded on change, so adding a domain takes effect
without a restart. With no .schema.yaml, validation degrades to warn-not-block.
Configuration
Env | Default | Meaning |
|
| wiki tree root (bind-mounted) |
|
| bind host |
|
| port; endpoint path is |
Metrics
Prometheus metrics are served unauthenticated at GET /metrics on the same
AI_WIKI_MCP_PORT as /mcp (no extra port to expose). They cover per-tool call
counts/latency/errors plus scrape-time wiki state — file count and size by layer,
wikilink totals, broken/ambiguous/orphan links, and lint findings by severity. All
metric names are prefixed ai_wiki_mcp_. The wiki gauges are recomputed on each
scrape, so keep the scrape interval at 15s or longer.
Web UI
A read-only viewer is served at GET /app on the same AI_WIKI_MCP_PORT as /mcp
(no extra port to expose; / redirects to /app/). It gives a navigable file tree, a
force-directed link graph (nodes sized by wikilink degree, broken/orphan markers), search
(client-side fuzzy jump + server full-text and the frontmatter filter DSL), click-through
[[wikilink]] navigation, and markdown rendering with a render⇄source toggle. It is a
no-build vanilla-JS SPA reading a small JSON API (/app/api/{tree,page,graph,index,search,stats});
third-party libraries are vendored under static/vendor/ so it works offline. Read-only:
no write/edit endpoints are exposed.
Develop
uv sync
uv run pytest # offline against tests/fixtures/wiki
uv run ruff check src tests
uv run ai-wiki-mcp # serve (set WIKI_ROOT first)Docker: docker build -t ai-wiki-mcp . then run with -v <wiki>:/wiki.
Releasing
Versioning is semver, single-sourced from [project].version in pyproject.toml.
Every PR must bump the version (major/minor/patch). The
version-checkworkflow fails a PR unless itspyproject.tomlversion is a validX.Y.Zstrictly greater thanmain's, so each merge produces a fresh tag. Bump with an edit +uv lock.Merging to
mainruns thereleasejob (after lint + tests pass): it builds the image, publishes it to the Gitea container registry, and pushes avX.Y.Zgit tag.
Published image (Gitea built-in registry, direct endpoint):
docker pull 192.168.10.32:3000/jhonnold/ai-wiki-mcp:<version> # or :latest
docker run --rm -p 3010:3010 -v <wiki>:/wiki \
192.168.10.32:3000/jhonnold/ai-wiki-mcp:<version>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.
Related MCP Servers
- Flicense-qualityBmaintenanceMCP server for structured markdown knowledge vaults that provides validation, FTS5 search, and wikilink cross-references. Enables AI agents to prime context and search across vaults using two MCP tools and template resources.Last updated6
- AlicenseAqualityAmaintenanceProvides a single-writer MCP server for a governance-grade knowledge base of markdown documents with version control and query capabilities.Last updated12918Apache 2.0
- Alicense-qualityBmaintenanceTurns a git-backed markdown directory into an MCP-compatible knowledge server, enabling any MCP client to read, search, ingest, and maintain a persistent wiki that compounds across sessions.Last updatedMIT
- Alicense-qualityAmaintenanceServes local Markdown wikis as a read-only knowledge source with MCP tools for agent context retrieval.Last updated1Apache 2.0
Related MCP Connectors
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.
Self-hostable team wiki; agents read & write it via MCP; Atlas turns your repo into a cited wiki.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/jhonnold/ai-wiki-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server