From claude-local-docs
Provides semantic search and retrieval for local documentation using configurable TEI embedding, reranking, and code embedding model URLs. Runs locally.
npx claudepluginhub matteodante/claude-local-docs --plugin claude-local-docsAdd to your .mcp.json:
{
"mcpServers": {
"local-docs": {
"command": "npx",
"args": [
"-y",
"claude-local-docs@latest"
],
"env": {
"TEI_EMBED_URL": "http://localhost:39281",
"TEI_RERANK_URL": "http://localhost:39282",
"TEI_CODE_EMBED_URL": "http://localhost:39283"
}
}
}
}npxTEI_EMBED_URL=http://localhost:39281TEI_RERANK_URL=http://localhost:39282TEI_CODE_EMBED_URL=http://localhost:39283