llms-txt-generator
by aircodelabs·★ 18·Score 40
AI-powered generator for llms.txt and llms-full.txt files with MCP server integration.
Overview
The llms-txt-generator is a specialized tool that creates AI-optimized documentation files for code projects. It generates both concise llms.txt files for quick navigation and comprehensive llms-full.txt files for thorough project understanding. The tool leverages AI capabilities to create documentation that speaks AI's language rather than traditional human-focused documentation.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this when you need AI-optimized documentation for your projects and want to leverage MCP integration for seamless documentation generation within AI development environments.
When NOT to choose this
Avoid if you need extensive customization beyond what the tool offers or if you're not using MCP-compatible AI development environments like Cursor or Claude Desktop.
Tools this server exposes
1 tool extracted from the READMEgenerate-llmsGenerate llms.txt and llms-full.txt files for the current project based on user requirements
Comparable tools
Installation
Installation
CLI Installation
# Install globally
npm install -g llms-txt-generator
# Or use npx
npx llms-txt-generator init
npx llms-txt-generator buildMCP Server Integration
For Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"llms-generator": {
"command": "npx",
"args": ["-y", "llms-txt-generator-mcp"]
}
}
}For Cursor, add to your cursor-settings.json:
{
"mcpServers": {
"llms-generator": {
"command": "npx",
"args": ["-y", "llms-txt-generator-mcp"]
}
}
}FAQ
- What is the difference between llms.txt and llms-full.txt?
- llms.txt provides a concise navigation view with brief descriptions, while llms-full.txt contains comprehensive documentation including detailed project overview, installation instructions, complete project structure, and code examples.
- How do I configure custom output paths?
- Use the init command to create a configuration file, then specify the output path in the llms-txt-generator.yaml configuration file under the output section.
Compare llms-txt-generator with
Last updated · Auto-generated from public README + GitHub signals.