time vs local_faiss_mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | local_faiss_mcp by nonatofabio | |
|---|---|---|
| Stars | ★ 85,748 | ★ 30 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsSearchDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
local_faiss_mcp · Summary
A local FAISS vector store MCP server providing document ingestion and semantic search functionality.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
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
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}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"]
}
}
}