MCP Catalogs
Home

llms-txt-generator vs everything

Side-by-side comparison to help you pick between these two MCP servers.

llms-txt-generator
by aircodelabs
everything
by modelcontextprotocol
Stars★ 18★ 85,748
30d uses
Score4077
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit11 mo agothis month

llms-txt-generator · Summary

AI-powered generator for llms.txt and llms-full.txt files with MCP server integration.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

llms-txt-generator · Use cases

  • Automatically generate AI-optimized documentation for new or existing code projects
  • Integrate MCP server functionality to enable AI assistants to create documentation directly
  • Standardize documentation format across multiple projects for consistent AI understanding

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

llms-txt-generator · Install

Installation

CLI Installation

# Install globally
npm install -g llms-txt-generator

# Or use npx
npx llms-txt-generator init
npx llms-txt-generator build

MCP 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"]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.