MkDocs MCP Server
Provides AI access to documentation projects built with MkDocs Material, offering tools for full-text search, page discovery, structural outline generation, and code block extraction.
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., "@MkDocs MCP Serversearch the documentation for how to set up the devcontainer"
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.
MkDocs MCP Example
A comprehensive example project demonstrating the integration of MkDocs Material documentation with a Model Context Protocol (MCP) server, showcasing modern Python development practices with uv, devcontainers, and VSCode.
๐ Features
๐ Beautiful Documentation
MkDocs Material theme with modern design
Responsive layout for all devices
Advanced search with full-text indexing
Dark/light mode with system preference detection
Mermaid diagrams and syntax highlighting
Auto-generated API documentation with mkdocstrings
๐ค AI-Powered Documentation Access
MCP Server providing AI access to documentation
Resource serving for direct content access
Advanced search tools for content discovery
Code block extraction and analysis
Page outline generation and navigation
๐ ๏ธ Modern Development Stack
Python 3.11+ with type hints and modern practices
uv for lightning-fast dependency management
DevContainers for consistent development environments
VSCode integration with comprehensive tooling
Rootless Podman support for secure containerization
๐งช Quality Assurance
Comprehensive testing with pytest and coverage
Code formatting with Ruff
Type checking with MyPy
Pre-commit hooks for automated quality checks
CI/CD ready configuration
๐ Quick Start
Prerequisites
Podman (rootless preferred)
VSCode with Dev Containers extension
Git
1. Clone & Open
git clone https://github.com/robmatesick/mkdocs-mcp-example.git
cd mkdocs-mcp-example
code .2. Start DevContainer
Press
Ctrl+Shift+P(Windows/Linux) orCmd+Shift+P(macOS)Select "Dev Containers: Reopen in Container"
Wait for container setup (~5-10 minutes on first run)
3. Start Development
# Terminal 1: Documentation server
make docs-serve
# Terminal 2: MCP server
make mcp-serverVisit http://localhost:8000 to see your documentation!
๐ Project Structure
mkdocs-mcp-example/
โโโ ๐ docs/ # Documentation source
โ โโโ index.md # Homepage
โ โโโ getting-started/ # Setup guides
โ โโโ mcp-server/ # MCP documentation
โ โโโ api/ # Auto-generated API docs
โ โโโ examples/ # Usage examples
โ
โโโ ๐ mkdocs-site/ # MkDocs configuration
โ โโโ mkdocs.yml # Main configuration
โ โโโ pyproject.toml # Dependencies
โ โโโ docs/ # Theme customizations
โ
โโโ ๐ mcp-server/ # MCP server implementation
โ โโโ src/mkdocs_mcp/ # Source code
โ โ โโโ server.py # Main server
โ โ โโโ resources.py # Resource management
โ โ โโโ tools.py # Search tools
โ โโโ tests/ # Unit tests
โ โโโ pyproject.toml # Dependencies
โ
โโโ ๐ .devcontainer/ # DevContainer config
โโโ ๐ .vscode/ # VSCode settings
โโโ ๐ tests/ # Integration tests
โโโ pyproject.toml # Workspace configuration
โโโ Makefile # Development commands
โโโ README.md # This file๐ง Development Commands
The project includes a comprehensive Makefile with common development tasks:
๐ฆ Setup & Installation
make setup # Complete development setup
make install # Install dependencies only๐งน Code Quality
make format # Format code with Ruff
make lint # Lint code and fix issues
make typecheck # Run MyPy type checking
make quality # Run all quality checks๐งช Testing
make test # Run all tests
make test-cov # Run tests with coverage
make test-watch # Run tests in watch mode๐ Documentation
make docs-serve # Start documentation server
make docs-build # Build static documentation
make docs-clean # Clean build artifacts๐ค MCP Server
make mcp-server # Start MCP server
make mcp-test # Run MCP server tests๐ Development Workflow
make dev # Start both docs and MCP server
make clean # Clean all build artifacts
make ci-check # Run all CI checks๐๏ธ Architecture
graph TB
A[๐ MkDocs Site] --> B[๐ Documentation Files]
B --> C[๐ค MCP Server]
C --> D[๐ง AI Assistant]
D --> E[๐ฅ Users]
F[๐จโ๐ป Developer] --> G[๐ณ DevContainer]
G --> H[๐ฆ uv Environment]
H --> A
H --> C
I[๐ CI/CD] --> J[๐งช Tests]
I --> K[๐๏ธ Build]
I --> L[๐ Deploy]๐ค MCP Server Usage
The MCP server provides AI assistants with direct access to your documentation:
Available Resources
Documentation pages as readable resources
Automatic metadata extraction from frontmatter
Hierarchical navigation support
Available Tools
search_docs- Full-text search across documentationfind_by_title- Find pages by title or headinglist_pages- List all available documentation pagesget_page_outline- Extract page structure and headingssearch_code_blocks- Find and filter code examples
Example Usage
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
# Connect to MCP server
server_params = StdioServerParameters(
command="python",
args=["-m", "mkdocs_mcp.server"]
)
async with stdio_client(server_params) as (read, write):
async with ClientSession(read, write) as session:
# List available documentation
resources = await session.list_resources()
print(f"Found {len(resources.resources)} pages")
# Search documentation
result = await session.call_tool("search_docs", {
"query": "installation",
"max_results": 5
})
print(result.content[0].text)๐โโ๏ธ Getting Started Guide
For Documentation Writers
Edit content in the
docs/directoryAdd new pages and update navigation in
mkdocs.ymlPreview changes at http://localhost:8000
Use Markdown features like admonitions, code blocks, and diagrams
For Python Developers
Modify MCP server in
mcp-server/src/mkdocs_mcp/Add new tools or resources for AI access
Run tests with
make testFollow type hints and modern Python practices
For DevOps Engineers
Customize DevContainer in
.devcontainer/Configure CI/CD pipelines using the Makefile targets
Deploy documentation using MkDocs build outputs
Monitor MCP server performance and usage
๐ Security & Best Practices
Rootless containers for enhanced security
No secrets in code - use environment variables
Input validation in MCP server endpoints
Type safety with comprehensive type hints
Dependency scanning with automated security checks
๐ Documentation
Complete documentation is available at:
๐ค Contributing
We welcome contributions! Please see our Contributing Guide for details.
Development Setup
Fork the repository
Clone your fork
Open in DevContainer
Run
make setupMake your changes
Run
make ci-checkSubmit a pull request
๐ Requirements
System Requirements
OS: Linux, macOS, or Windows with WSL2
RAM: 4GB minimum, 8GB recommended
Storage: 2GB free space
Software Requirements
Python: 3.11 or higher
Podman: Latest stable version
VSCode: With Dev Containers extension
Git: For version control
๐ Troubleshooting
Common Issues
Container build fails
# Clean Podman cache and try again
podman system prune -a
# Or rebuild DevContainer from VSCode
# Ctrl+Shift+P -> "Dev Containers: Rebuild Container"Port conflicts
make docs-serve MKDOCS_PORT=8002Dependency issues
make clean
make dev-installSee the Troubleshooting Guide for more solutions.
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
๐ Acknowledgments
MkDocs - Static site generator
Material for MkDocs - Beautiful theme
Model Context Protocol - AI integration standard
uv - Fast Python package manager
Ruff - Python linting and formatting
Podman - Container runtime
๐ Support
Documentation: Project Documentation
Issues: GitHub Issues
Discussions: GitHub Discussions
โญ Star this repo if you find it helpful!
Built with โค๏ธ using modern Python development practices.
This server cannot be installed
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
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/robmatesick/mkdocs-mcp-example'
If you have feedback or need assistance with the MCP directory API, please join our Discord server