Stats
Actions
Tags
From claude-local-docs
Provides semantic search and retrieval for local documentation using configurable TEI embedding, reranking, and code embedding model URLs. Runs locally.
Copy this JSON into your .mcp.json to enable this server
Add 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"
}
}
}
}Server configuration and connection parameters
npxCommand-line arguments passed to the server process
Environment variables set when the server starts
TEI_EMBED_URL=http://localhost:39281TEI_RERANK_URL=http://localhost:39282TEI_CODE_EMBED_URL=http://localhost:39283npx claudepluginhub matteodante/claude-local-docs --plugin claude-local-docs