mkd-mcp
Verified Safeby lucashzhang
Overview
Manages and searches a knowledge base of Markdown documents, serving them via a FastMCP server for programmatic access.
Installation
uv run python -m mkd_mcp serve --root-dir /path/to/your/knowledge_baseSecurity Notes
The server design generally follows good security practices. It primarily operates on local files within a user-defined root directory, limiting the scope of potential impact. SQLite FTS5 queries use parameterized input, mitigating SQL injection risks. Dangerous operations like database regeneration require explicit user confirmation. No obvious `eval` or arbitrary code execution vectors were found. File system interactions are constrained to the provided `--root-dir` and its `.mkd-mcp` subdirectory.
Similar Servers
scraps
The Scraps MCP server provides an interface for AI assistants to interact with a knowledge base of interconnected Markdown documentation, enabling features like content search, tag listing, and link/backlink lookup.
doc-hub-mcp
Provides offline, local Markdown document retrieval and resource reading capabilities for IDEs, Agents, or debugging tools, primarily focused on WeChat Work and Feishu developer documentation.
ai-skills-hub
Provides AI assistants with access to a team's coding standards, best practices, and knowledge base by dynamically loading Markdown skill files via an MCP server.
get-biji-dev-by-gemini3pro
Integrates the Get Notes API with a Model Context Protocol (MCP) server to provide AI-powered knowledge search and recall from multiple knowledge bases.