filesystem vs local_faiss_mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | local_faiss_mcp by nonatofabio | |
|---|---|---|
| Stars | ★ 85,748 | ★ 30 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsSearchDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
local_faiss_mcp · Summary
A local FAISS vector store MCP server providing document ingestion and semantic search functionality.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.
local_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"]
}
}
}