Home / MCP / MCP LLMS.txt Explorer MCP Server
Provides MCP access to llms.txt explorer features for validating and listing websites with llms.txt files.
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.
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.
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 installStep 2: Build the server (for a local stdio deployment)
pnpm run buildStep 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"]
}
}
}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"]
}
}
}Check if a domain hosts llms.txt files and return their locations along with validation status.
Provide a list of known websites that expose llms.txt or llms-full.txt files and filter by file type.