Overview
MCP LLMS.txt Explorer is a Model Context Protocol server designed to explore websites that implement llms.txt files, allowing users to discover and analyze these websites effectively.
To use the MCP LLMS.txt Explorer, you can either install it via Smithery or manually clone the repository from GitHub. After installation, you can check websites for llms.txt files and access structured data about compliant websites.
- Check websites for llms.txt and llms-full.txt files. - Parse and validate llms.txt file contents. - Access structured data about compliant websites. - Tools for checking website compliance and listing known websites.
- Analyzing compliance of websites with the llms.txt standard.
- Discovering websites that utilize llms.txt files for better data management.
- Validating the contents of llms.txt files for accuracy and completeness.
Add to your AI client
Use these steps to connect MCP LLMS.txt Explorer 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-explorer-thedaviddias": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-llms-txt-explorer-thedaviddias"
]
}
}
}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-explorer-thedaviddias": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-llms-txt-explorer-thedaviddias"
]
}
}
}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-explorer-thedaviddias": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-llms-txt-explorer-thedaviddias"
]
}
}
}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-explorer-thedaviddias": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-llms-txt-explorer-thedaviddias"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-llms-txt-explorer-thedaviddias": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-llms-txt-explorer-thedaviddias"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-llms-txt-explorer-thedaviddias": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-llms-txt-explorer-thedaviddias"
]
}
}
}FAQ
What is llms.txt?
llms.txt is a standard for websites to provide structured data about their compliance with certain protocols.
How do I install MCP LLMS.txt Explorer?
You can install it via Smithery or manually by cloning the repository and following the installation instructions provided in the documentation.
Is there support for debugging?
Yes, the MCP Inspector can be used for debugging, providing tools to access debugging information in your browser.