AI

LLMs Integration

Machine-readable index of all Munson Labs documentation, optimised for LLM consumption.

The docs site exposes two machine-readable files at the root, following the llms.txt convention:

FileURLWhat it contains
llms.txt/llms.txtIndex of all doc pages: title, URL, and one-line description
llms-full.txt/llms-full.txtFull markdown content of every doc page concatenated

These are generated automatically at build time from the site content.

When to use each

llms.txt is the lightweight index. Use it to let an LLM discover what pages exist before deciding which to fetch. It is small enough to paste directly into a context window.

llms-full.txt contains the entire documentation corpus. It is suitable for one-shot ingestion when you want the LLM to have full coverage upfront — useful for RAG pipelines, fine-tuning, or when the MCP server is not available.

llms-full.txt is small enough here (two packages) that it's usually the simplest option for one-shot ingestion — there's no MCP server exposing these docs as structured tools.

Copyright © 2026