Server data from the Official MCP Registry
BM25 search over llms.txt doc indexes (Strands, Kiro, AWS); sources addable at runtime.
BM25 search over llms.txt doc indexes (Strands, Kiro, AWS); sources addable at runtime.
This is a well-designed MCP server for searching documentation via llms.txt indexes with strong security fundamentals. The code demonstrates sophisticated SSRF protection through multi-layered validation (scheme whitelisting, IP range blocking, DNS-rebinding defense, redirect re-validation), proper URL authorization scoping, and input validation. Minor code quality observations around error handling and logging do not materially affect security. Supply chain analysis found 4 known vulnerabilities in dependencies (2 critical, 2 high severity). Package verification found 1 issue.
7 files analyzed · 9 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: LLMSTXT_REGISTRY_PATH
Environment variable: LLMSTXT_SNIPPET_HYDRATE_MAX
Environment variable: LLMSTXT_LOG_LEVEL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-praveenc-llmstxt-doc-search": {
"env": {
"LLMSTXT_LOG_LEVEL": "your-llmstxt-log-level-here",
"LLMSTXT_REGISTRY_PATH": "your-llmstxt-registry-path-here",
"LLMSTXT_SNIPPET_HYDRATE_MAX": "your-llmstxt-snippet-hydrate-max-here"
},
"args": [
"-y",
"@praveenc/llmstxt-doc-search"
],
"command": "npx"
}
}
}From the project's GitHub README.
Live, ranked search across any number of
llms.txtdocumentation sites - Strands, Kiro, the AWS guides, and whatever you add at runtime.
llmstxt-doc-search is a Model Context Protocol (MCP) server that turns the llms.txt index a documentation site publishes into a fast, ranked search tool your agent can call. It indexes titles at startup, ranks queries with BM25, and fetches the full document only when you open a result - so you get current docs with almost no local storage. Built on the search engine from @praveenc/mcp-docs-server, generalized to a runtime registry of sources.
An llms.txt file is a curated index of a doc site's pages, published for tools like this one to consume. They can be large - AWS Bedrock's lists roughly a thousand documents - so downloading everything is wasteful and goes stale fast.
This server takes a leaner approach:
mcp, json, and stdio are preserved rather than stemmed.fetch_doc.The result is a good fit for broad, fast-moving reference material - the opposite tradeoff to snapshotting docs into a local vault.
Add the server to your MCP client configuration (Claude Desktop, Kiro, and others). It is downloaded and run on demand via npx - no manual build:
{
"mcpServers": {
"llmstxt-doc-search": {
"command": "npx",
"args": ["-y", "@praveenc/llmstxt-doc-search"]
}
}
}
npm install -g @praveenc/llmstxt-doc-search
Then point your MCP client at the installed binary:
{
"mcpServers": {
"llmstxt-doc-search": {
"command": "llmstxt-doc-search"
}
}
}
Once the server is connected, the typical flow is three calls:
docs_home() - orient yourself: see the registered sources and how to search and fetch.search_docs("prompt caching", "aws-bedrock-userguide") - rank matching docs. Omit the source to search everything.fetch_doc(url) - read the full content of a result you like.Add your own source at any time and it is indexed immediately and persisted for future runs:
add_doc_source("langgraph", "https://langchain-ai.github.io/langgraph/llms.txt")
| Tool | Purpose |
|---|---|
docs_home() | Orientation: registered sources plus how to search and fetch. Call this first. |
list_doc_sources() | List sources with their llms.txt URL and index status. |
search_docs(query, source?, k?) | BM25 search. Omit source to search all, or scope to one. Returns ranked {source, url, title, score, snippet}. k defaults to 5 (max 50). |
fetch_doc(url) | Fetch the full content of a result URL. The URL must belong to a registered source. |
add_doc_source(name, llms_txt_url) | Register and index a new llms.txt source at runtime. Persisted. |
remove_doc_source(name) | Remove a registered source. |
refresh_doc_source(name) | Re-index a source to pick up new or changed docs. |
Seeded into the registry on first run:
strands, kiro, aws-bedrock-userguide, aws-agentic-ai-lens, aws-bedrock-agentcore-devguide, mcp.
The registry is persisted at ~/.config/llmstxt-doc-search/sources.json (override with LLMSTXT_REGISTRY_PATH). Anything you add, remove, or refresh at runtime is saved there.
All configuration is via environment variables; none are required.
| Variable | Default | Meaning |
|---|---|---|
LLMSTXT_REGISTRY_PATH | ~/.config/llmstxt-doc-search/sources.json | Where the source registry is persisted. |
LLMSTXT_SNIPPET_HYDRATE_MAX | 5 | How many top hits to fetch when building result snippets. |
LLMSTXT_LOG_LEVEL | info | Log verbosity: debug, info, warn, or error. Logs go to stderr only. |
npx @modelcontextprotocol/inspector npx -y @praveenc/llmstxt-doc-search
Clone the repository for local work:
git clone https://github.com/praveenc/llmstxt-doc-search.git
cd llmstxt-doc-search
npm install
npm run dev # run from source with tsx (no build)
npm test # offline unit tests
npm run typecheck # type-check without emitting
npm run build # compile to dist/
npm run inspect:dev # MCP Inspector against the source
Point your client at a source checkout instead of the published package:
{
"mcpServers": {
"llmstxt-doc-search": {
"command": "npx",
"args": ["tsx", "/ABS/PATH/llmstxt-doc-search/src/index.ts"]
}
}
}
Or, after npm run build, at the compiled entry point:
{
"mcpServers": {
"llmstxt-doc-search": {
"command": "node",
"args": ["/ABS/PATH/llmstxt-doc-search/dist/index.js"]
}
}
}
src/
├── index.ts # MCP server entry point and tool registration
├── config.ts # Defaults and environment configuration
├── tools/
│ └── docs.ts # search_docs, fetch_doc, and source management
└── utils/
├── doc-fetcher.ts # HTTP fetching, redirect handling, HTML parsing
├── indexer.ts # BM25 search index
├── registry.ts # Persisted source registry
├── store.ts # In-memory document store
├── text-processor.ts # Tokenization and snippet helpers
├── url-validator.ts # SSRF guard and URL validation
├── stopwords.ts # Stop-word list
└── logger.ts # Logging utilities
Ranking uses BM25 (Best Matching 25) with several enhancements:
running and run).prompt caching).mcp, json, and stdio unstemmed so they match exactly.This server fetches user-supplied URLs at runtime, so its SSRF surface is guarded in depth:
fetch_doc only retrieves URLs under a registered source's origin and path prefix, matched on a path boundary rather than a raw string prefix. There is no arbitrary fetch.http(s) schemes are rejected.ipaddr.js), covering decimal, octal, and hex IPv4, IPv4-mapped IPv6, loopback, link-local, unique-local, carrier-grade NAT, and other reserved ranges - not just a hostname regex.Runtime dependencies report zero known vulnerabilities.
MIT - Copyright (c) 2026 Praveen Chamarthi
Contributions are welcome. If you find a bug or have an idea:
npm test, npm run typecheck, and npm run build all pass.main with a clear description of what changed and why.Commit messages follow the Conventional Commits style.
LLMSTXT_LOG_LEVEL=debug for more detail).Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.