Chezmoi Documentation Server
FreeNot checkedEnables searching, reading, and listing pages from the official chezmoi documentation. Supports caching and Markdown conversion for LLM-friendly access.
About
Enables searching, reading, and listing pages from the official chezmoi documentation. Supports caching and Markdown conversion for LLM-friendly access.
README
Model Context Protocol (MCP) server for the official chezmoi documentation.
This server is inspired by the shape of the AWS documentation MCP server and focuses on the workflows that are most useful for docs-heavy assistants:
- Search the official chezmoi documentation
- Read a documentation page and convert it to Markdown
- Read specific sections from a documentation page
- List known documentation pages discovered from the site navigation
Features
- Uses the official
https://www.chezmoi.io/site as its source of truth - Converts Material for MkDocs pages into LLM-friendly Markdown
- Builds and caches a local in-memory search index by crawling the docs site
- Restricts fetched content to the official chezmoi documentation host
- Runs over
stdioby default
Prerequisites
- Python 3.10 or newer
- An MCP client such as Claude Desktop, Cursor, or VS Code
Installation
Install on VS Code
If you have uv installed, you can add this server to VS Code from GitHub:
Equivalent CLI command:
code --add-mcp '{"name":"chezmoi-documentation","command":"uvx","args":["--from","git+https://github.com/llamakko/chezmoi-documentation-mcp-server.git","chezmoi-documentation-mcp-server"],"env":{"FASTMCP_LOG_LEVEL":"ERROR"}}'
This adds the server to your VS Code user profile.
Local development install
python3 -m venv .venv
. .venv/bin/activate
pip install -e .
Example MCP client configuration
{
"mcpServers": {
"chezmoi-documentation": {
"command": "/ABSOLUTE/PATH/TO/chezmoi-documentation-mcp-server/.venv/bin/python",
"args": ["-m", "chezmoi_documentation_mcp_server"],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
}
}
}
}
If you prefer to install without a local checkout, you can switch the command to uvx or your preferred package runner.
Prefer absolute paths and avoid wrapping the server launch in a shell command. This follows the MCP guidance for reducing local-server execution risk.
Tools
search_documentation
Search the official chezmoi documentation. The first search builds a cached index by crawling the site, so it may take longer than later searches.
Parameters:
query: Search termslimit: Maximum number of results to return
read_documentation
Fetch a chezmoi documentation page and convert the main content to Markdown.
Parameters:
url: Absolute URL, root-relative path, or documentation path
read_sections
Fetch a page and return only the requested sections.
Parameters:
url: Absolute URL, root-relative path, or documentation pathsections: A list of section names to match against page headings
list_documentation_pages
List documentation pages discovered from the official site.
Parameters:
section: Optional filter applied to URL and titlelimit: Maximum number of pages to return
Environment variables
| Variable | Description | Default |
|---|---|---|
CHEZMOI_DOCUMENTATION_BASE_URL |
Base URL for docs crawling | https://www.chezmoi.io/ |
CHEZMOI_DOCUMENTATION_ALLOW_UNOFFICIAL_BASE_URL |
Set to true only for local development against a non-official docs mirror |
— |
CHEZMOI_DOCUMENTATION_MAX_PAGES |
Maximum number of pages to crawl for the search index | 350 |
CHEZMOI_DOCUMENTATION_CONCURRENCY |
Concurrent fetches while building the index | 10 |
CHEZMOI_DOCUMENTATION_CACHE_TTL_SECONDS |
Cached search index lifetime in seconds | 3600 |
CHEZMOI_DOCUMENTATION_REQUEST_TIMEOUT_SECONDS |
HTTP timeout per request in seconds | 20 |
CHEZMOI_DOCUMENTATION_MAX_REDIRECTS |
Maximum redirects to follow after validating each hop | 5 |
CHEZMOI_DOCUMENTATION_MAX_RESPONSE_BYTES |
Maximum HTML response size in bytes | 3145728 |
CHEZMOI_DOCUMENTATION_MAX_DOCUMENT_CHARS |
Maximum Markdown/text characters returned from a page or section | 120000 |
CHEZMOI_DOCUMENTATION_MAX_QUERY_LENGTH |
Maximum search or filter query length | 240 |
CHEZMOI_DOCUMENTATION_MAX_SECTION_COUNT |
Maximum requested sections per call | 12 |
CHEZMOI_DOCUMENTATION_MAX_SECTION_LENGTH |
Maximum section heading match length | 120 |
CHEZMOI_DOCUMENTATION_MAX_URL_LENGTH |
Maximum documentation URL length | 2048 |
CHEZMOI_DOCUMENTATION_MAX_SEARCH_RESULTS |
Upper bound for search_documentation(limit=...) |
20 |
CHEZMOI_DOCUMENTATION_MAX_LIST_RESULTS |
Upper bound for list_documentation_pages(limit=...) |
200 |
CHEZMOI_DOCUMENTATION_RATE_LIMIT_CALLS |
Maximum tool calls per rate-limit window | 30 |
CHEZMOI_DOCUMENTATION_RATE_LIMIT_PERIOD_SECONDS |
Rate-limit window length in seconds | 60 |
MCP_USER_AGENT |
Optional custom user agent for HTTP requests. If unset, the server uses its built-in user agent string | built-in |
Security
This server applies a small set of MCP-aligned hardening measures:
- Validates tool inputs and rejects oversized URL, query, and section arguments
- Restricts fetches to the official chezmoi docs host by default
- Validates every redirect hop before following it
- Caps response size and returned document length
- Sanitizes returned text and Markdown
- Uses an in-memory rate limit for tool invocations
- Runs over
stdioexplicitly
Official MCP references used for these choices:
- MCP Security Best Practices: https://modelcontextprotocol.io/docs/tutorials/security/security_best_practices
- MCP Tools Security Considerations: https://modelcontextprotocol.io/specification/2025-06-18/server/tools
- MCP Transports (
stdioguidance): https://modelcontextprotocol.io/specification/2025-06-18/basic/transports - Build an MCP Server logging guidance: https://modelcontextprotocol.io/docs/develop/build-server
Development
Run tests:
PYTHONPATH=src python3 -m unittest discover -s tests
Run a low-impact live smoke check against the official docs:
PYTHONPATH=src python3 scripts/smoke_check.py
The smoke check fetches one representative documentation page and verifies that page parsing and section extraction still work. It intentionally avoids a broad crawl so it can be run regularly with minimal load on chezmoi.io.
Validate pinned GitHub Actions with pinact:
brew install pinact
pinact run --check
Update pinned GitHub Actions with pinact:
pinact run -u
GitHub Actions also includes a scheduled Smoke Check workflow that runs weekly and is available via workflow_dispatch.
GitHub Release Setup
Before pushing a release tag, configure the github-release environment in your repository settings.
This project uses Semantic Versioning. Release tags follow the vMAJOR.MINOR.PATCH format, for example v0.1.0.
Recommended settings:
- Add required reviewers
- Enable
Prevent self-review - Restrict deployments to selected tags such as
v* - Disable admin bypass if your workflow allows it
- Add an environment variable named
RELEASE_ENV_READYwith the valuetrue
The release workflow is intentionally configured to fail until RELEASE_ENV_READY=true is present in the github-release environment. This prevents accidentally publishing from an unprotected environment.
The workflow also verifies that the tagged commit is reachable from the repository default branch before it builds a release.
For public repositories, the release workflow generates artifact attestations for files in dist/. You can verify them with GitHub CLI:
gh attestation verify dist/* -R OWNER/REPO
Installing Chezmoi Documentation Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/llamakko/chezmoi-documentation-mcp-serverFAQ
Is Chezmoi Documentation Server MCP free?
Yes, Chezmoi Documentation Server MCP is free — one-click install via Unyly at no cost.
Does Chezmoi Documentation Server need an API key?
No, Chezmoi Documentation Server runs without API keys or environment variables.
Is Chezmoi Documentation Server hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Chezmoi Documentation Server in Claude Desktop, Claude Code or Cursor?
Open Chezmoi Documentation Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare Chezmoi Documentation Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
