Skip to main content
Glama

Synorive

Local-first semantic search for every file you own — plus a fact-checked web researcher.

Search your documents, source code, PDFs, images and videos by meaning, not by filename. Then search the open web across many engines, hunt for counter-evidence, and get a briefing where every single line is a verbatim quote with its source.

Runs fully offline. Your files never leave your machine. Ships 24 MCP tools for Claude Code.

English · 简体中文 · Français · Español · Русский · العربية

Download License Platform Engine Desktop Offline MCP

⬇️ Download

Windows installer

Synorive-Setup-0.1.2.exe — Python runtime bundled, in-app auto-update

Windows portable

Synorive-0.1.2-portable.exe — no install; auto-update not available for this form

Android

app-release.apk — thin client, talks to the engine on your PC over LAN

No Python installation required. The interpreter and every engine dependency ship inside the installer, so a fresh machine with no Python, no pip access and no internet still starts up.

Synorive research workbench — multi-engine web search with per-source trust ranking

The research workbench: multi-engine search, per-source trust ranking, and an excluded-results drawer that always tells you why something was filtered out. Dark theme: screenshot


What it does

🔍

Semantic search over your own files — documents, source code, PDFs (indexed section by section), images (OCR), video (down to the second), saved web pages

🖼

Cross-modal search — find an image by describing it, or find which video a frame came from and at what second

🌐

Multi-engine web search — Bing / Baidu / 360 / Mojeek / Wikipedia, plus Google and DuckDuckGo through a self-hosted SearXNG

🛡

Actively hunts for counter-evidence — searches for debunkings, traces a claim back to its earliest source, flags retracted papers

📋

Extract-only briefings — every line is a verbatim quote with its source. Conflicting claims are shown side by side, undecided

🔌

24 MCP tools for Claude Code — let your agent search your own library and verify claims for you

🔒

Privacy fence — web search and cloud inference are two separate switches, because one leaks what you ask and the other leaks what you have

Keywords: local semantic search · offline AI search engine · multimodal RAG · personal knowledge base · document search · vector search · hybrid search · fact checking · misinformation detection · MCP server · Claude Code · SQLite FTS5 · sqlite-vec · HNSW · OCR · video search · Chinese NLP · Electron desktop app · privacy-first · self-hosted


Related MCP server: quarry

Why another search tool?

Most "search your files" tools stop at keyword matching, and most "AI research" tools hand you a fluent summary you cannot verify. Synorive refuses both:

  • Retrieval is measured, not claimed. Every performance number below was benchmarked on real data — including the two that did not reach their targets. They are listed with the reason instead of being quietly dropped.

  • Nothing is silently discarded. Results filtered out as low quality go into an "excluded" drawer with the reason, one click to bring them back.

  • It never tells you something is false. It finds who disputes a claim and shows you both sides. Judging truth is not a capability it has, and pretending otherwise would be the most dangerous thing it could do.


What works today

Phases 1–3, 5 and 8 are complete. The application is genuinely usable right now.

Searching your own files

  • Drop in a folder mixing documents, code, images and video → indexed concurrently in the background, the UI never freezes

  • Semantic search over documents in Chinese and English — describe the content, no need to remember the filename

  • Query syntax straight in the search box: type:pdf date:last7days -draft "exact phrase"

  • Search text inside images (OCR, measured at 100% character coverage)

  • Find similar images from one image, or find which video a frame came from and at what second

  • Search a spoken line and jump straight to 3 m 24 s of the video

  • Papers indexed by section (Abstract / Method / Results); hits are labelled page 2 · Background

  • Ask a PDF "what questions can you answer?" and click a question to expand the source passage

Searching the web and checking it

  • Many engines concurrently (cn.bing / Baidu / 360 / Mojeek / Wikipedia); with a self-hosted SearXNG, Google and DuckDuckGo work too

  • Deep research reads the first round before deciding what to ask next, then searches again

  • A Chinese query automatically gets an English variant, routed to the engines with better English coverage — primary sources are usually in English

  • Actively reverse-searches for "debunked / disputed / retracted / controversy" and puts the counter-evidence in front of you

  • Traces a claim back to its earliest source; a dozen sites publishing the same story within two days gets flagged as a syndication burst

  • A cited paper that has been retracted is flagged in red (via OpenAlex)

  • Five academic sources merged by DOI, with citation counts and PDF links

Using it from Claude Code

After claude mcp add synorive, Claude Code can search your library, verify a claim, and compare what you have against what the web says — in the same answer.

The full technical design and the 76-item feature menu live in docs/00-技术方案.md. Every performance target, how it counts as measured, and which ones are still untested, are declared in code at engine/synorive/metrics.py; the benchmark scripts are in engine/tests/ (bench_g_series / bench_research / bench_ingest_stages).


Benchmarks (measured, not estimated)

Measured

Target

Cold start to searchable

1.30 s

≤2.0 s ✅

First results @ 102k chunks

P50 45 ms / P95 186 ms

≤80 / ≤200 ✅

Full retrieval @ 102k chunks

P95 373 ms

≤500 ✅

Scroll frame rate

59.9 fps

≥55 ✅

Disk for 100k chunks

374 MB

≤3 GB ✅

Resume after interruption

54/54 skipped, 1067× faster

Image ingest (OCR deferred)

19.35 images/s

Image OCR (background pass)

1.2–1.5 images/s

← bound by the Python GIL

Video fast path

88.6× realtime

Video with transcription

5.97× realtime

≥6 ⚠️

Text embedding (single worker)

19.8 chunks/s (was 12.6; batch 16→8 gave 1.57×)

⚠️ see below

Deep research briefing P95

8.29 s (was 23.79 s; a global deadline cut it 65%)

≤8.0 ⚠️ short by 0.29 s

Warm cache hit

P50 17.6 ms

≤200 ✅

Drop-in to searchable

P95 0.8 s

≤3.0 ✅

Quick web search P95

2.4 s

≤3.0 ✅

⚠️ Ingest throughput is bound by this machine (i5-1155G7, no discrete GPU). Stage-by-stage timing shows embedding alone is 97.7% of the cost; the other five stages together are 2.3%. Going faster from here means a quantised model or a GPU, not more tuning.

⚠️ The deep-research P95 dropped from 23.79 s to 8.29 s, but the cost was that 20 of 20 runs skipped the second follow-up round. The number and its price have to be read together.

See the how field of A6/A7 in engine/synorive/metrics.py — the target column there says "⚠️ to be re-set" instead of a number, and that is deliberate: a target everyone knows is unreachable is worse than admitting it has not been set.


Getting started

One-time setup

# 1. Node dependencies (Node ≥20)
npm install

# 2. Generate the font subset (6 MB, not in the repo, must be generated once)
python scripts/build_fonts.py

# 3. Generate icons (already committed; only needed if you change the source image)
python scripts/build_icons.py

# 4. Python engine environment (Python ≥3.11)
py -3.13 -m venv engine/.venv
engine/.venv/Scripts/python.exe -m pip install -e engine

Develop

npm run dev              # Electron + Vite with HMR; the engine starts itself

Build

npm run build            # all workspaces
npm run build:desktop    # desktop only
npm run pack:win         # Windows installer + portable

Release and auto-update

Desktop and Android both check for updates against this repository's GitHub Releases.

npm run version:check      # are all four version numbers in sync?
npm run version:set 0.1.2  # change all four at once — never edit them by hand
npm run android:keystore   # first time only: generate the Android release keystore (kept outside the repo)
npm run release            # build both artifacts, do NOT upload
npm run release:publish    # build and create a GitHub Release (requires gh to be logged in)

There are four ways to break the update chain that produce no error at all. scripts/release.mjs blocks each one:

What is missing

What the user sees

latest.yml not uploaded

Desktop says "you are up to date", not an error — the update never arrives

Tag does not match package.json

Updater 404s

APK not uploaded

Phone finds the new version but cannot download it

Android versionCode not incremented

Phone says "you are up to date"

Security boundary of the update channel — stated plainly rather than glossed over:

Desktop

Android

Transport

HTTPS

HTTPS, and the code hard-rejects any non-GitHub host

Integrity

sha512 from latest.yml; mismatch refuses to install

Byte count must equal the asset size GitHub reports (a server that hangs up early also returns −1 from read(), so without a length check you get a truncated package)

Authenticity

⚠️ No code signing. No certificate was purchased, so Authenticode verification is skipped and SmartScreen will warn about an unknown publisher

✅ The OS verifies the signature; an APK signed with the wrong key simply will not install

Closing the desktop gap has exactly one path: buy a code-signing certificate and set publisherName in electron-builder.yml. Until then, do not market this as "secure updates".

Two known limitations, both by design rather than bugs:

  • The portable exe cannot auto-update. A single-file self-extracting build runs from a temp directory and cannot replace the copy of itself that is currently running. The app says so explicitly and links to the download page, instead of erroring and making you retry.

  • Android requires manual install confirmation. Distribution outside an app store can only invoke the system installer, which asks for "allow installing unknown apps" the first time. The app detects that permission and takes you straight to the right settings page.

Running the engine on its own (debugging, CLI, MCP)

engine/.venv/Scripts/python.exe -m synorive.main --port 8731 --data-dir ./data
# API docs at http://127.0.0.1:8731/docs

Connecting to Claude Code

npm run build --workspace=@aevorine/synorive-mcp
node scripts/install-claude-integration.mjs

Open a fresh Claude Code session afterwards and ask "did I save anything about X?" — retrieval fires automatically.

The 24 tools:

  • Local librarysearch / ingest / analyze / get_content / similar / timeline / graph / status / questions

  • Webweb_search / research / scholar / read_url / web_engines / verify / unified_search

  • Literaturescholar_review (thematic review, extract-only), scholar_table (one metric across many papers), citations (co-citation to find the foundational papers), harvest (bulk-fetch open-access full text into the library, dry-run by default)

  • Verification and memorycheck_numbers (check every figure against the source text), memory (what did I already look up on this topic?)

  • Local mediacompare (what differs between two files), chapters (chapter list for a long video)

Everything returned to Claude carries a trust breakdown and a source, and the tool descriptions state the limits of what the tool can do ("cannot judge whether a statement is factually true", "verbatim extraction is not paraphrase", "counter-evidence exists ≠ the original claim is false"). Without that, Claude will treat a content farm and an official spec as equally authoritative and relay both with the same confident tone.

The engine address is auto-discovered from data/engine.json: if the desktop app is running, the MCP server connects to the same engine; if not, it starts its own. SYNORIVE_ENGINE_URL overrides.

Measured in August 2026: Google now requires JavaScript (plain HTTP only returns a redirect page), DuckDuckGo's html endpoint became a JS landing page, Yandex serves a captcha, and all seven public SearXNG instances returned 429/403. In practice there is exactly one free path left to those engines: run your own SearXNG.

node scripts/setup-searxng.mjs            # show what it intends to do (dry run, changes nothing)
node scripts/setup-searxng.mjs --apply    # actually install it (needs Docker)
node scripts/setup-searxng.mjs --status   # is it still alive?

The engine auto-discovers and enables it on cold start — no settings toggle to find. Measured after installing: google cse contributed 20 results on its own and DuckDuckGo 10, where both return zero when queried directly.


Design decisions that are not obvious

  • Web search and cloud inference are two switches, not one. Web search leaks what you are asking; cloud inference leaks what you already have. Those are different risks, so collapsing them into a single "privacy mode" would let you turn off the one you cared about while the other stays on.

  • The clipboard image overlay never goes to the network — even with web peeking enabled. Sending text is one sentence; sending a screenshot is an image that could contain anything.

  • Filtered results are folded, not deleted. The same article found by five engines and reposted by three sites is eight results but one thing. Folding it and recording "5 engines, 3 sites" keeps the number that cross-verification needs; deleting it throws that away.

  • Rate-limited ≠ broken. A search engine that returns a captcha is not a broken parser. They are counted separately, because "slow down" and "this adapter is dead" need opposite responses.

  • Benchmarks that missed their target stay in the table. Two rows above are marked ⚠️ rather than removed.


License

AGPL-3.0-or-later. If you run a modified version as a network service, you must publish your modifications.

A
license - permissive license
-
quality - not tested
A
maintenance

Maintenance

Maintainers
Response time
0dRelease cycle
2Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    Provides semantic code intelligence to help users search, navigate, and analyze entire codebases using plain English. It enables Claude to perform architectural overviews, bug detection, and refactor suggestions through local semantic search and keyword indexing.
    Last updated
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Enables local semantic search over documents and code for Claude Code and Claude Desktop, running entirely offline with local embeddings and vector storage.
    Last updated
    11
    3
    MIT
  • A
    license
    B
    quality
    C
    maintenance
    Enables Claude Code to interact with Jupyter notebooks, perform semantic search over knowledge files, and manage research projects.
    Last updated
    33
    4
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Integrates Google Gemini 3.1 with Claude Code to provide web search, large codebase analysis, multimodal image understanding, and creative brainstorming, leveraging Gemini's 1M token context and Google Search grounding.
    Last updated
    5
    67
    142
    MIT

View all related MCP servers

Related MCP Connectors

  • Live SEO workflow tools for Claude Code, Codex, and AI agents.

  • Cross-agent artifact workspace with provenance across Claude Code, Codex, Cursor, LangGraph.

  • Search arXiv/Semantic Scholar/OpenAlex + medical evidence (PubMed/Europe PMC) + LaTeX/PDF tools.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Aevorine/Synorive'

If you have feedback or need assistance with the MCP directory API, please join our Discord server