MCP Server
Maintained
MIT
io.github.praveenc/llmstxt-doc-search MCP Server
io.github.praveenc/llmstxt-doc-search
What is the io.github.praveenc/llmstxt-doc-search MCP server?
BM25 search over llms.txt doc indexes (Strands, Kiro, AWS); sources addable at runtime.
How to install io.github.praveenc/llmstxt-doc-search
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"llmstxt-doc-search": {
"command": "npx",
"args": [
"-y",
"@praveenc/llmstxt-doc-search"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"llmstxt-doc-search": {
"command": "npx",
"args": [
"-y",
"@praveenc/llmstxt-doc-search"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"llmstxt-doc-search": {
"command": "npx",
"args": [
"-y",
"@praveenc/llmstxt-doc-search"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"llmstxt-doc-search": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@praveenc/llmstxt-doc-search"
]
}
}
}Claude Code
claude mcp add llmstxt-doc-search -- npx -y @praveenc/llmstxt-doc-search