Home / MCP / MCP LLMS.txt Explorer MCP Server

MCP LLMS.txt Explorer MCP Server

Provides MCP access to llms.txt explorer features for validating and listing websites with llms.txt files.

typescript
Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
    "mcpServers": {
        "llms_txt_explorer": {
            "command": "node",
            "args": [
                "/path/to/llms-txt-explorer/build/index.js"
            ]
        }
    }
}

You can run and use the MCP LLMS.txt Explorer server to discover and analyze websites that implement the llms.txt standard. It exposes both local (stdio) and npx-based execution options so you can run it in your preferred workflow and integrate it with your MCP client.

How to use

You connect to the MCP LLMS.txt Explorer server from your MCP client. Choose one of the available execution methods: a local stdio server or an npx-based runtime. The server can check websites for llms.txt and llms-full.txt, validate those files, and provide structured data about compliant sites. Use it to quickly verify the presence of llms.txt on a domain and to browse a list of known websites that expose these files.

How to install

Prerequisites: you need Node.js and a package manager on your system. Common choices are npm, pnpm, or using npx for quick execution.

Step 1: Install dependencies for local development (if you plan to build and run a local stdio server)

pnpm install

Step 2: Build the server (for a local stdio deployment)

pnpm run build

Step 3: Run the server locally (stdio) with the runtime command shown in the configuration snippet below. This starts the server and enables MCP clients to connect via stdio.

{
  "mcpServers": {
    "llms_txt_explorer_local": {
      "command": "node",
      "args": ["/path/to/llms-txt-explorer/build/index.js"]
    }
  }
}

Usage via npx

If you prefer a quick start without local installation, you can run the server through npx. This uses the published package directly.

{
  "mcpServers": {
    "llms_txt_explorer_npx": {
      "command": "npx",
      "args": ["-y", "@thedaviddias/mcp-llms-txt-explorer"]
    }
  }
}

Available tools

check_website

Check if a domain hosts llms.txt files and return their locations along with validation status.

list_websites

Provide a list of known websites that expose llms.txt or llms-full.txt files and filter by file type.