All SkillsGet Started Free
Mkdocs
Build project documentation sites with MkDocs static site generator. USE WHEN user mentions mkdocs, documentation site, docs site, project documentation, OR wants to create, configure, build, or deploy documentation using Markdown. Covers installation, configuration, theming, plugins, and deployment.
MCP get_skill({ skillId: "mkdocs-05199c56" })Use this skill with your agent
Create a free account and connect via MCP
# MkDocs Documentation Site Generator
MkDocs is a fast, simple static site generator for building project documentation from Markdown files. Configuration uses a single YAML file (`mkdocs.yml`).
## Quick Start
### Installation
```bash
# Install MkDocs
pip install mkdocs
# Verify installation
mkdocs --version
```
### Create New Project
```bash
# Create project structure
mkdocs new my-project
cd my-project
# Start development server
mkdocs serve
```
**Project Structure Created:**
```
my-project/
├── mkdocs.yml # Configuration file
└── docs/
└── index.md # Homepage
```
### Minimal Configuration
```yaml
# mkdocs.yml
site_name: My Project
site_url: https://example.com/
nav:
- Home: index.md
- About: about.md
```
## Core Commands
| Command | Purpose |#broad-capability#devops#azure#kubernetes#productivity#documentationpythonpipbashmkdocs