LocalSynapse MCP Server Adds macOS Support and Search Improvements

LocalSynapse is an MCP server that enables Claude to search inside local documents (Word, Excel, PDF) fully offline. The tool has been updated with macOS support and several search improvements based on community feedback.
macOS Version Now Available
The macOS version works as an MCP server with Claude Desktop and Claude Code, using the same hybrid BM25 + semantic search engine as the existing version. Setup requires adding the following configuration:
{
"mcpServers": {
"localsynapse": {
"command": "/path/to/LocalSynapse",
"args": ["mcp"]
}
}
}Search Improvements
Based on feedback from the r/ClaudeAI community, several search enhancements have been implemented or are planned:
- Multi-word search fix: A bug causing queries like "sifive structure" to return zero results has been fixed and shipped.
- Position-adjusted click boosting: Clicking result #8 after skipping results 1-7 provides a stronger positive signal than raw click counts. This feature is next on the roadmap.
- Re-query as negative signal: When a user searches, clicks a result, then searches again within seconds, that click is tracked as a probable miss.
- Time decay as promotion: Instead of punishing old documents, newer documents receive a small boost when scores are close, which is particularly useful for financial and legal documents that remain relevant for years.
Additional Updates
The latest version also properly excludes cloud-synced files from indexing statistics. LocalSynapse remains a free, fully offline side project developed by a single developer.
📖 Read the full source: r/ClaudeAI
👀 See Also

FixAI: Browser Game Teaches Consumer Law by Fighting Corporate AI Bots
FixAI is a browser game with 36 levels where players argue against corporate or government AI systems using real consumer laws. Built with Vanilla JS, Node/Express, and Claude Haiku, it features a resistance scoring system and educational explanations of legal arguments.
UI and Server for Anthropic's Natural Language Autoencoders on llama.cpp
A custom llama.cpp server and Mikupad UI for Anthropic's open-weight Natural Language Autoencoders, supporting activation extraction, explanation, reconstruction, and steering via explanation editing.

Claude Code v2.1.59 adds auto-memory, copy command, and shell improvements
Claude Code v2.1.59 introduces automatic context saving to auto-memory with /memory management, adds a /copy command for interactive code block selection, and improves prefix suggestions for compound bash commands.

quorum: AI Code Governance Tool Enforces Independent Model Review
quorum is a governance layer for AI-assisted development that enforces a consensus protocol requiring code to be independently reviewed by a different model before committing. It includes three structural gates that block progress: audit, retro, and quality gates.