MCP Catalogs
Home

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
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsSearchDeveloper Tools
LanguageTypeScriptPython
Last committhis month1 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-everything

local_faiss_mcp · Install

Installation

From PyPI (Recommended)

pip install local-faiss-mcp

From 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.