llms.txt Ecosystem
Tools, plugins, and integrations
Official Resources
Section titled “Official Resources”| Resource | Description |
|---|---|
| llms.txt specification | Official standard website |
| AnswerDotAI/llms-txt | Original repository |
| llms-txt-hub | Directory of 329+ sites |
Generation Tools
Section titled “Generation Tools”CLI Tools
Section titled “CLI Tools”| Tool | Language | Description |
|---|---|---|
| llmstxt | Node.js | Generate from sitemap.xml |
| llmstxt-architect | Python | AI-powered generation with LLM |
| llms_txt2ctx | Python | Convert to context |
Web Services
Section titled “Web Services”| Service | Description |
|---|---|
| llm.codes | Convert JS documentation |
| llmstxt.com | Generator and hub |
Framework Plugins
Section titled “Framework Plugins”Astro / Starlight
Section titled “Astro / Starlight”pnpm add starlight-llms-txtimport starlightLlmsTxt from 'starlight-llms-txt'
export default defineConfig({ integrations: [ starlight({ plugins: [starlightLlmsTxt()], }), ],})VitePress
Section titled “VitePress”npm install vitepress-plugin-llmsimport llmsPlugin from 'vitepress-plugin-llms'
export default { vite: { plugins: [llmsPlugin()], },}Docusaurus
Section titled “Docusaurus”npm install docusaurus-plugin-llms-txtmodule.exports = { plugins: ['docusaurus-plugin-llms-txt'],}Drupal
Section titled “Drupal”Recipe for Drupal 10.3+:
Extensions and Utilities
Section titled “Extensions and Utilities”Browser Extensions
Section titled “Browser Extensions”| Extension | Description |
|---|---|
| LLMs.txt Checker | Chrome: check for llms.txt presence |
IDE Extensions
Section titled “IDE Extensions”| Extension | Description |
|---|---|
| PagePilot | VS Code: load context from llms.txt |
Raycast
Section titled “Raycast”# Raycast extension for llms.txtraycast://extensions/llmstxtMCP Integrations
Section titled “MCP Integrations”mcpdoc
Section titled “mcpdoc”Using llms.txt as a source for MCP:
{ "mcpServers": { "docs": { "command": "uvx", "args": [ "--from", "mcpdoc", "mcpdoc", "--urls", "LangGraph:https://langchain-ai.github.io/langgraph/llms.txt", "--transport", "stdio" ] } }}Multiple Sources
Section titled “Multiple Sources”{ "mcpServers": { "multi-docs": { "command": "uvx", "args": [ "--from", "mcpdoc", "mcpdoc", "--urls", "React:https://react.dev/llms.txt", "Next.js:https://nextjs.org/llms.txt", "Tailwind:https://tailwindcss.com/llms.txt", "--transport", "stdio" ] } }}Libraries
Section titled “Libraries”Python
Section titled “Python”pip install llms-txtfrom llms_txt import parse_llms_txt, to_context
# Parsingwith open('llms.txt') as f: data = parse_llms_txt(f.read())
# Convert to contextcontext = to_context(data, include_optional=False)JavaScript
Section titled “JavaScript”import { parseLlmsTxt } from 'llmstxt-parser'
const response = await fetch('https://example.com/llms.txt')const content = await response.text()const parsed = parseLlmsTxt(content)
console.log(parsed.title) // "Project Name"console.log(parsed.description) // "Brief description"console.log(parsed.sections) // { "Docs": [...], "API": [...] }composer require llmstxt/parser
use LlmsTxt\Parser;
$parser = new Parser();$data = $parser->parse(file_get_contents('llms.txt'));Sites with llms.txt
Section titled “Sites with llms.txt”By Category
Section titled “By Category”| Category | Examples |
|---|---|
| AI/ML | Anthropic, Cohere, Hugging Face, CrewAI |
| Developer Tools | Astro, Vercel, Stripe, Resend |
| Databases | DuckDB, Upstash, Turso |
| Integration | Zapier, Make, Activepieces |
Full Directory
Section titled “Full Directory”See llms-txt-hub for the complete list of 329+ sites.
Standards and Compatibility
Section titled “Standards and Compatibility”Relationship with Other Standards
Section titled “Relationship with Other Standards”| Standard | Purpose | Relationship to llms.txt |
|---|---|---|
| robots.txt | Rules for crawlers | Complements, doesn’t replace |
| sitemap.xml | List of all pages | llms.txt is a curated subset |
| humans.txt | Team information | Different purposes |
Versioning
Section titled “Versioning”Current specification version: 1.0
The specification is stable and backward compatible.