LLM Support
Provide AI-friendly endpoints to assist large language models
Introduction
Large language models waste tokens crawling HTML, JS, and site chrome. By shipping a few simple endpoints, you can provide a more efficient way for LLMs to access your documentation.
/llms.txt: a concise sitemap with titles, URLs, and summaries/llms-full.txt: a full Markdown dump of every document/llms.mdx/*: the raw MDX/Markdown content of a requested page
/llms.txt
- Lists each section and page in your documentation
- Includes optional one-line descriptions from frontmatter
- No boilerplate or styling, just the outline
# Docs
## API Reference
- [Get museum hours](/docs/api-reference/operations/getMuseumHours): Get upcoming museum operating hours.
- [Buy museum tickets](/docs/api-reference/tickets/buyMuseumTickets): Purchase museum tickets for general entry or special events.
## Home
- [Quickstart](/docs/quickstart): Start building awesome documentation in under 5 minutesThis file is generated at the root of your deployed site, enabling agents to discover it at https://<your-domain>/llms.txt.
/llms-full.txt
- Concatenates the raw MDX/Markdown of every page
- Preserves headings, paragraphs, code samples, and frontmatter
- Lets an LLM ingest your entire documentation corpus in a single fetch
# API Reference: Get museum hours
URL: /docs/api-reference/operations/getMuseumHours
Source: https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/refs/heads/main/content/docs/api-reference/(generated)/operations/getMuseumHours.mdx
Get upcoming museum operating hours.
...full MDX content...This file is generated at build time by globbing content/docs/**/*.mdx and joining files in sidebar order.
/llms.mdx/*
- Provides the raw MDX/Markdown content of a requested page
- Preserves headings, paragraphs, code samples, and frontmatter
Example: /llms.mdx/quickstart
# Home: Quickstart
URL: /docs/quickstart
Source: https://raw.githubusercontent.com/techwithanirudh/fumadocs-starter/refs/heads/main/content/docs/(index)/quickstart.mdx
Start building awesome documentation in under 5 minutes
## Setup your development environment
A minimum version of Node.js 22 is required...Last updated on