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

ClawMetry: Open-Source Observability Dashboard for OpenClaw Agents
ClawMetry is an open-source observability dashboard for OpenClaw agents that provides live session activity, token cost tracking, memory file change detection, and stuck session alerts. It runs locally with pip install clawmetry and was built using OpenClaw itself.

ZuckerBot MCP Server Enables OpenClaw Agents to Run Meta Ads Campaigns
ZuckerBot is an MCP server that gives OpenClaw agents direct control over Meta Ads, allowing them to execute full campaign loops without human intervention. Over 50 unique agents are now live using it to pull competitor ads, generate targeting, launch campaigns, and adjust performance in code.

LLMs Leak Reasoning into Structured Output Despite Explicit Instructions
A developer building a tool that makes parallel API calls to Claude and parses structured output found that validation models intermittently output reasoning text before corrected content, despite explicit instructions to return only corrected text. The fix involved prompt tightening plus a defensive strip function that runs before parsing.

Forge: Open-Source Claude Code Plugin Adds Governance and Testing Gates
Forge is an open-source Claude Code plugin that adds file locking, automated test gates, and 22 governance agents to prevent collisions and drift in AI-generated code workflows. It's MIT licensed and installs via the Claude plugin marketplace.