drio
Open app

mcp-llms-txt

Source

MCP server for SecretiveShell/Awesome-llms-txt. Add documentation directly into your conversation via MCP resources.

Catalog onlyCatalog onlySTDIO

Overview

MCP-llms-txt is a server designed for integrating documentation directly into conversations using MCP resources, specifically tailored for the Awesome-llms-txt project.

To use MCP-llms-txt, you can install it via Smithery or manually configure it in your Claude setup. Detailed installation guides are available on the project's website.

  • Seamless integration of documentation into conversations. - Easy installation via command line or manual configuration. - Support for testing the server using mcp-cli.
  1. Enhancing chatbots with real-time documentation.
  2. Assisting developers in accessing project documentation during development.
  3. Facilitating better communication in technical discussions.

Add to your AI client

Use these steps to connect mcp-llms-txt in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-llms-txt-secretiveshell": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-llms-txt-secretiveshell"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-llms-txt-secretiveshell": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-llms-txt-secretiveshell"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-llms-txt-secretiveshell": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-llms-txt-secretiveshell"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-llms-txt-secretiveshell": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-llms-txt-secretiveshell"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-llms-txt-secretiveshell": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-llms-txt-secretiveshell"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-llms-txt-secretiveshell": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-llms-txt-secretiveshell"
      ]
    }
  }
}

FAQ

How do I install MCP-llms-txt?

You can install it using the command `npx -y @smithery/cli install @SecretiveShell/MCP-llms-txt --client claude` or follow the manual setup guide.

Is there support for testing the server?

Yes! You can use the mcp-cli tool to test the server with a pre-configured setup.

What license is MCP-llms-txt under?

MCP-llms-txt is licensed under the MIT License.