everything vs local_faiss_mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | local_faiss_mcp by nonatofabio | |
|---|---|---|
| Stars | ★ 85,748 | ★ 30 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsSearchDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
local_faiss_mcp · Summary
A local FAISS vector store MCP server providing document ingestion and semantic search functionality.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
local_faiss_mcp · Use cases
- Add local document search capabilities to Claude/Copilot/Agents for RAG applications
- Create a personal knowledge base with semantic search functionality
- Build document analysis tools that can retrieve relevant information from local files
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythinglocal_faiss_mcp · Install
Installation
From PyPI (Recommended)
pip install local-faiss-mcpFrom Source
git clone https://github.com/nonatofabio/local_faiss_mcp.git
cd local_faiss_mcp
pip install -e .Configuration with Claude Desktop
Add to your Claude Desktop configuration:
{
"mcpServers": {
"local-faiss-mcp": {
"command": "local-faiss-mcp",
"args": ["--index-dir", "/path/to/index/directory"]
}
}
}