Skip to content
All Skills

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.

Software Engineering|v1|Updated 7/2/2026|GitHub source
MCP get_skill({ skillId: "mkdocs-05199c56" })

Use this skill with your agent

Create a free account and connect via MCP

Get Started Free
# 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                           |

Continue reading

Sign up for a free account to view the full skill content

Login / Register
#broad-capability#devops#azure#kubernetes#productivity#documentationpythonpipbashmkdocs
Mkdocs - AgentArmory Skill — AgentArmory